v1

latestOpenAPI 3.0.12026-07-2679100267.2 KB
Online Checkout

Update tokenized card data

Update a tokenized card details

post/v1/checkout/tokenized-card-data

Headers

accountIdstring uuid required
Example:890022ce-bae0-45c1-9b9d-ee7872e6ca27

The parent accountId of the business.

Request body

tokenKeystring required

token key

currentEmailAddressstring required

customer email currently associated with the key

newEmailAddressstring required

new email to replace the old one

Example request

{
  "tokenKey": "5844858382",
  "currentEmailAddress": "email@email.com",
  "newEmailAddress": "email@email.com"
}

Response

Data update successful.

codestring required

Response Code

descriptionstring required

Response description

Example response

{
  "code": "00",
  "description": "Success",
  "data": {
    "message": "email@email.com",
    "tokenizedCardData": [
      {
        "tokenKey": "e890bd1a9f0d",
        "customerEmail": "email@email.com",
        "cardType": "Verve",
        "cardPan": "234818********7580",
        "tokenExpirationDate": "20/20"
      }
    ]
  }
}