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
Run any Go code and use any Go package available with a simple import. Refer to the Pipedream Go docs to learn more.
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}`,
},
})
},
})
You can execute custom Go scripts on-demand or in response to various triggers and integrate with thousands of apps supported by Pipedream. Writing with Go on Pipedream enables backend operations like data processing, automation, or invoking other APIs, all within the Pipedream ecosystem. By leveraging Go's performance and efficiency, you can design powerful and fast workflows to streamline complex tasks.
package main
import (
"fmt"
pd "github.com/PipedreamHQ/pipedream-go"
)
func main() {
// Access previous step data using pd.Steps
fmt.Println(pd.Steps)
// Export data using pd.Export
data := make(map[string]interface{})
data["name"] = "Luke"
pd.Export("data", data)
}