with Summit and Nextdoor Ads?
Emit new event when a new model is added to your organization in Summit. 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
Executes a model within Summit and captures the response fields. See the documentation
Creates an advertiser that is tied to the NAM profile the API credentials are tied to. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
summit: {
type: "app",
app: "summit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.usesummit.com/v1/apps`,
headers: {
"x-api-key": `${this.summit.$auth.api_key}`,
},
})
},
})
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}`,
},
})
},
})