with JoggAI and Nextdoor Ads?
Emit new event when the status of a video changes in JoggAI.
Creates an AI avatar photo using JoggAI API. See the documentation
Creates an ad based on the input payload for an existing NAM ad group. See the documentation
Creates an avatar video using JoggAI API. See the documentation
Creates an ad group based on the input payload for an existing campaign. See the documentation
Creates a product from product info using JoggAI API. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
joggai: {
type: "app",
app: "joggai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.jogg.ai/v1/templates`,
headers: {
"x-api-key": `${this.joggai.$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}`,
},
})
},
})