GET
/
clients
/
{client_id}
/
recurring_tokens
/
{purchase_id}
curl --request GET \
  --url https://gate.chip-in.asia/api/v1/clients/{client_id}/recurring_tokens/{purchase_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

Client id
string
required

Object ID (UUID)

Purchase 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

Example:

1619740800

updated_on
integer

Object last modification time

Example:

1619740800

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.