with Passcreator and PushEngage?
Emit new event when a pass is marked as voided. See the documentation
Emits a new event when a new app scan has been recorded in Passcreator. See the documentation
Emit new event when a new wallet pass is created. See the documentation
The Passcreator API lets you automate the creation, management, and distribution of mobile wallet content, such as coupons, membership cards, and event tickets. Within Pipedream, this API becomes a powerful tool to connect with other services, streamlining your marketing and customer engagement efforts. By blending the API's functionality with Pipedream's ability to integrate with countless services, you can create dynamic, personalized wallet items and distribute them based on user behavior, events, or data from other apps.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
passcreator: {
type: "app",
app: "passcreator",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.passcreator.com/api/pass-template`,
headers: {
"Authorization": `${this.passcreator.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pushengage: {
type: "app",
app: "pushengage",
}
},
async run({steps, $}) {
return await axios($, {
url: ` https://api.pushengage.com/apiv1/notifications`,
headers: {
"api-key": `${this.pushengage.$auth.api_key}`,
},
})
},
})