Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation
Emit new event when a new version of an npm package is published. See the documentation
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
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}`,
},
})
},
})