with AppsFlyer and HeyGen?
Emit new event when an in-app event is recorded, such as a purchase or level completion. See docs here
Emit new event when a specific avatar video event occurs. The user can define a custom set of event(s) to trigger. See the documentation
Emit new event when a user installs an app tracked by AppsFlyer. See docs here
Emit new event when a Heygen video fails during processing. See the documentation
Emit new event when a user uninstalls an app tracked by AppsFlyer. See docs here
Returns a list of the available event types for the specified endpoint type. See the documentation
Creates a talking photo from a provided image. See the documentation
Returns a list of the available message fields for each platform. See the documentation
Generates a video from a selected template. See the documentation
Fetches a link for a specific heygen video. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
appsflyer: {
type: "app",
app: "appsflyer",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://hq1.appsflyer.com/api/pushapi/v1.0/fields/windowsphone`,
headers: {
Authorization: `Bearer ${this.appsflyer.$auth.api_token}`,
"accept": `application/json`,
},
})
},
})
The HeyGen API offers tools for generating visual content, such as social media posts, banners, and other graphics programmatically. Integrating this API with Pipedream allows you to automate the creation and distribution of visual assets based on various triggers and data sources. For example, you can generate new images when a new product is added to your inventory, create customized social media posts from RSS feed items, or even automate weekly visual reports.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
heygen: {
type: "app",
app: "heygen",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.heygen.com/v2/avatars`,
headers: {
"X-Api-Key": `${this.heygen.$auth.api_token}`,
},
})
},
})