Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a contact becomes a new member of a vault.
Emit new event when a new version of an npm package is published. See the documentation
Emit new event when a new registration for an event takes place.
Emit new event when a lead is gained from a landing page.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
attractwell: {
type: "app",
app: "attractwell",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.attractwell.com/api/v1/campaigns`,
headers: {
Authorization: `Bearer ${this.attractwell.$auth.oauth_access_token}`,
},
})
},
})