with npm and Veedea?
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 product purchase is created.
Get the list of campaigns created in the Veedea Dashboard. See the documentation
Retrieves a list of leads who purchased products through the specified campaign. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
veedea: {
type: "app",
app: "veedea",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://veedea.com/api/getcampaign`,
params: {
api_key: this.veedea.$auth.api_key,
token: this.veedea.$auth.access_token,
},
})
},
})