GET
/
clients
/
{id}
/
recurring_tokens
/
{id}
curl --request GET \
  --url https://gate.chip-in.asia/api/v1/clients/{id}/recurring_tokens/{id}/ \
  --header 'Authorization: Bearer <token>'
{
  "type": "<string>",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "created_on": 1619740800,
  "updated_on": 1619740800,
  "payment_method": "<string>",
  "description": "<string>"
}

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

200
application/json
OK

A record of one of recurring_token-s saved for a specific client. id of this object will be the same as the recurring_token saved.

type
string

Object type identifier

id
string
created_on
integer

Object creation time

updated_on
integer

Object last modification time

payment_method
string

Payment method used to create this token, e.g. card.

description
string

Description of this token, if available. For card payments, this field will contain the masked card number.