Passcreator enables businesses to manage successful mobile Wallet campaigns. Store cards, event tickets, coupons and membership cards on your customer's smartphone!
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
Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.
Format a date string to another date string. For more examples on formatting, see the Sugar Date Format 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}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})