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}`,
},
})
},
})
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
Nextdoor Ads uses API keys for authentication. When you connect your Nextdoor Ads account, Pipedream securely stores the keys so you can easily authenticate to Nextdoor Ads APIs in both code and no-code steps.