with npm and Nextdoor Ads?
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
Creates an ad based on the input payload for an existing NAM ad group. See the documentation
Creates an ad group based on the input payload for an existing campaign. See the documentation
Creates an advertiser that is tied to the NAM profile the API credentials are tied to. See the documentation
Creates a scheduled report based on the input configuration. Upon a successful request the report will be sent out based on the schedule cadence. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nextdoor: {
type: "app",
app: "nextdoor",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://ads.nextdoor.com/v2/api/me`,
headers: {
Authorization: `Bearer ${this.nextdoor.$auth.authorization_token}`,
},
})
},
})