Apple Pass templates
Create a CWT credential Apple Pass template
/v2/credentials/compact/digital-pass/apple/templatesAuthorization
bearerAuth In: header
Request Body
multipart/form-data
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
curl -X POST "https://example.com/v2/credentials/compact/digital-pass/apple/templates" \ -F template="string" \ -F name="string" \ -F fileName="string" \ -F teamIdentifier="string" \ -F passTypeIdentifier="string" \ -F wwdr="string" \ -F signerCert="string" \ -F signerKey="string" \ -F signerKeyPassphrase="string"{ "id": "string", "passType": "apple", "name": "string", "metadata": { "fileName": "string", "teamIdentifier": "string", "passTypeIdentifier": "string" }}Retrieve all CWT credential Apple Pass templates
/v2/credentials/compact/digital-pass/apple/templatesAuthorization
bearerAuth In: header
Query Parameters
Range size of returned list.
1 <= value <= 1000100Starting point for the list of entries.
Response Body
application/json
application/json
curl -X GET "https://example.com/v2/credentials/compact/digital-pass/apple/templates"{ "nextCursor": "string", "data": [ { "id": "string", "passType": "apple", "name": "string", "metadata": { "fileName": "string", "teamIdentifier": "string", "passTypeIdentifier": "string" } } ]}Retrieve a CWT credential Apple Pass template
/v2/credentials/compact/digital-pass/apple/templates/{id}Authorization
bearerAuth In: header
Path Parameters
Apple Pass template ID
uuidApple Pass template ID
Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/v2/credentials/compact/digital-pass/apple/templates/string"{ "id": "string", "passType": "apple", "name": "string", "metadata": { "fileName": "string", "teamIdentifier": "string", "passTypeIdentifier": "string" }}Update a CWT credential Apple Pass template
/v2/credentials/compact/digital-pass/apple/templates/{id}Authorization
bearerAuth In: header
Path Parameters
Apple Pass template ID
Apple Pass template ID
Request Body
multipart/form-data
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
curl -X PUT "https://example.com/v2/credentials/compact/digital-pass/apple/templates/string" \ -F template="string" \ -F name="string" \ -F fileName="string" \ -F teamIdentifier="string" \ -F passTypeIdentifier="string" \ -F wwdr="string" \ -F signerCert="string" \ -F signerKey="string" \ -F signerKeyPassphrase="string"{ "id": "string", "passType": "apple", "name": "string", "metadata": { "fileName": "string", "teamIdentifier": "string", "passTypeIdentifier": "string" }}Delete a CWT credential Apple Pass template
/v2/credentials/compact/digital-pass/apple/templates/{id}Authorization
bearerAuth In: header
Path Parameters
Apple Pass template ID
uuidApple Pass template ID
Response Body
application/json
application/json
curl -X DELETE "https://example.com/v2/credentials/compact/digital-pass/apple/templates/string"How would you rate this page?
Last updated on