Tagging an existing card for sending to Account Updater provider
Background |
---|
Before starting this tutorial, make sure you understand the following topics from the Quick start section:
|
-
Update the Card's Registration Tag
Send a
PUT
request to the Update card token endpoint. Include the parametershouldUpdateCard: true
in the body of your request.curl -X PUT https://api.nexiopaysandbox.com/pay/v3/vault/card/{cardToken} \ -H 'Content-Type: application/json' \ -H 'Accept: application/json' \ -H 'Authorization: Basic [Base64_encoded_login]' -d '{ "shouldUpdateCard": true }'
-
Check the Card's Status (Optional)
Send a
GET
request to the View card token details endpoint.
For legacy accounts, the response includes a string value calledaccountUpdaterStatus
(see the account updater Card status table for more information). For current accounts, the response includes theshouldUpdateCard
parameter. This is the card's enrollment status.Note
It usually takes three to four business days for a card token to become registered with account updater.
curl -X GET https://api.nexiopaysandbox.com/pay/v3/vault/card/{cardToken} \ -H 'Accept: application/json' \ -H 'Authorization: Basic [Base64_encoded_login]'
{ "accountUpdaterStatus": "isExcluded", "card": {...}, "data": {...}, "dateCreated": "2019-07-31T17:02:39.035Z", "dateLastModified": "2019-07-31T18:33:30.660Z", "merchantId": "100100", "shouldUpdateCard": true, "tokenex": {...} }
Updated 8 months ago