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
Create a new account with the given data. See the documentation
Deletes a user with he specified identifyId. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gainsight_px: {
type: "app",
app: "gainsight_px",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.gainsight_px.$auth.base_endpoint}/accounts`,
headers: {
"X-APTRINSIC-API-KEY": `${this.gainsight_px.$auth.api_key}`,
},
})
},
})