with Schedule and AppsFlyer?
Trigger your workflow on one or more days each month at a specific time (with timezone support).
Emit new event when an in-app event is recorded, such as a purchase or level completion. See docs here
Trigger your workflow on one or more days each week at a specific time (with timezone support).
Returns a list of the available event types for the specified endpoint type. See the documentation
Returns a list of the available message fields for each platform. See the documentation
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.
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`,
},
})
},
})