POST
/
v1
/
cards
/
{cardId}
/
provision
/
google
curl --request POST \
  --url https://api.chron.com/v1/cards/{cardId}/provision/google \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "clientDeviceID": "<string>",
  "clientWalletProvider": "<string>",
  "clientWalletAccountID": "<string>"
}'
{
  "encryptedPaymentInstrument": "<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 Google successfully.
encryptedPaymentInstrument
string
required

The encrypted payment instrument data returned by Google.