Developer Documentation (API)
- Authentication
- PHP Package
- V2 Endpoints
- Pass Templates
- Get a list of templates
- Describe the structure of a pass template
- Create a new template
- Update a template
- Patch a template
- Publish changes of a template
- Get information about fields of a pass-template only
- Schedule a Push Notification
- List scheduled notifications of a template
- Delete a scheduled Push Notification
- Copy a Pass Template
- Delete a Pass Template
- Create an iFrame Integration for a Template
- Create an URL Integration for a Template
- Passes
- REST Hooks
- Validating passes
- Deprecated endpoints
Pass Template created
POST Request to target URL
Endpoint URL defined when subscribing
Purpose
Pushes information about a pass template that has been created to the target-url.
Event type: pass_template_created
Submitted values
JSON-Array containing the following information:
- uniqueIdentifier – the unique identifier of the template that has been created
- name – the name of the template that has been created
- noOfActivePasses – the number of active passes (will be always zero after creation)
- noOfCreatedPasses – the number of passes that have been created using the template (will also be zero after creation)
Example payload:
{
"uniqueIdentifier": "9bb306e2-42c9-4146-9a95-d788365ba9af",
"name": "test",
"noOfActivePasses": 0,
"noOfCreatedPasses": 0
}