latestOpenAPI 3.0.12026-08-10122864.6 KB

15f03804be72

Push provisioning

Fetch activation payload for Apple Pay in-app verification

Call this endpoint to initiate an in-app verification for activating a token on Apple Pay.<br> Note: This endpoint follows the Method A: Cryptographic OTP process according to the Apple Pay developer documentation. It will also trigger the change request process. The customer will receive a 2FA challenge to confirm the request.<br> The successfully completed Change Request will return an activation_data payload in the API response. You must then submit this payload in a separate request to the Apple Wallet. Please check the Apple Pay developer documentation for more details.

post/v1/cards/{card_id}/tokens/apple/verify

Path parameters

card_idstring required

The unique identifier of the customer's card.

Response

Redirect to Change Request

idstring

ID of the change request.

status'ACCEPTED' | 'AUTHORIZATION_REQUIRED' | 'CONFIRMATION_REQUIRED' | 'COMPLETED' | 'FAILED'

The current status of the change request.

updated_atstring date-time

UTC timestamp from the last time the change request was updated.

urlstring

URL to use to authorize the change request.

Example response

{
  "id": "d6c778822b2d7bd3b778935bcfd0d1d3csc",
  "status": "AUTHORIZATION_REQUIRED",
  "updated_at": "2022-04-21T13:59:52+00:00",
  "url": "https://example.com/authorize"
}