Get Apple Wallet Verification

📘

Note

This endpoint supports Mastercard only. Using this endpoint for a Visa card returns a 400 response.

The Apple Wallet Verification endpoint enables you to support in-app verification for Apple Pay with Mastercard. This endpoint creates a cryptographic one-time password (OTP) that can be sent as a parameter to Apple Wallet. Apple Wallet then initiates a request to the Apple servers to activate the payment pass, including the activationData.

You can get Apple Wallet verification by making a GET request to the Get Apple Wallet Verification endpoint, with the publicToken of the card you want to return data for in the endpoint. For example:

{base-url}/dcs/api/v1/provisioning/{publicToken}/applewallet/verification

If successful, a 200 response is returned with a Tokenisation Authentication Value (TAV) Version 4 Base 64 Encoded activationData field. See the below example response.

{
  "activationData": "ew0KICAiVmVyc2lvbiI6ICI0IiwNCiAgIktleUFsaWFzIjogIiIsDQogICJTaWduYXR1cmVBbGdvcml0aG0iOiAiUlNBLVNIQTI1NiIsDQogICJJbmNsdWRlZEZpZWxkc0luT3JkZXIiOiAiZGF0YVZhbGlkVW50aWxUaW1lc3RhbXB8YWNjb3VudE51bWJlcnxhY2NvdW50RXhwaXJ5IiwNCiAgIkRhdGFWYWxpZFVudGlsVGltZXN0YW1wIjogIiIsDQogICJTaWduYXR1cmUiOiAiIg0KfQ=="
}

👍

API Explorer

See Apple In App Verification to view the endpoint in the API Explorer.