import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
charthop: {
type: "app",
app: "charthop",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.charthop.com/v1/user/me`,
headers: {
Authorization: `Bearer ${this.charthop.$auth.api_token}`,
},
})
},
})
Emit new event when a new employee is added to the organization. See the documentation
Emit new event when a new group is added to the organization. See the documentation
Emit new event when a new job is added to the organization. See the documentation
Return people, job, group, and field data for a particular org that match a provided search string. See the documentation
Updates an existing employee's details. See the documentation
ChartHop uses API keys for authentication. When you connect your ChartHop account, Pipedream securely stores the keys so you can easily authenticate to ChartHop APIs in both code and no-code steps.