Update Payment Token Status

The Update Payment Token Status endpoint enables you change the status of a payment token associated with a device. You can do this by making a PUT request to the Update Payment Token Status endpoint. For example:

{{base-url}}/cards/{{publicToken}}/payment-tokens/{{token-id}}/status

The body of the request must include the status the payment token is to be set to. In the below example, the status will be set to Suspended.

{
  "status": "Suspended"
   
}

A successful response will return an HTTP 200 response code.

👍

API Explorer

See the Update Payment Token Status endpoint.