DELETE
/
clients
/
{id}
/
recurring_tokens
/
{id}
curl --request DELETE \
  --url https://gate.chip-in.asia/api/v1/clients/{id}/recurring_tokens/{id}/ \
  --header 'Authorization: Bearer <token>'

If you create the Purchase with the respective Client’s ID (in .client_id), he won’t see this token as available on checkout page anymore.

You also won’t be able to use the ID of this object as a recurring_token in POST /purchases/{id}/charge/. The respective Purchase will have is_recurring_token set to false (as if POST /purchases/{recurring_token}/delete_recurring_token/ was issued).

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Object ID (UUID)

Response

204

OK