POST
/
v1
/
cards
/
{cardId}
/
provision
/
apple
curl --request POST \
  --url https://api.chron.com/v1/cards/{cardId}/provision/apple \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "clientDeviceID": "<string>",
  "clientWalletProvider": "<string>",
  "clientWalletAccountID": "<string>"
}'
{
  "primaryAccountNumberPrefix": "<string>",
  "activationData": "<string>",
  "authenticationData": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

cardId
string
required

Unique identifier for the card.

Body

application/json
clientDeviceID
string
required

The identifier for the client device.

clientWalletProvider
string
required

The wallet provider code.

clientWalletAccountID
string
required

The wallet account identifier.

Response

200
application/json
Card provisioned to Apple successfully.
primaryAccountNumberPrefix
string
required

The prefix of the primary account number.

activationData
string
required

The activation data provided by Apple.

authenticationData
string
required

The authentication data provided by Apple.