Clients
List all clients
API Reference
- Purchases
- Payment methods
- Clients
- Webhooks
- Public key
- Account
- Company statements
Clients
List all clients
GET
/
clients
curl --request GET \
--url https://gate.chip-in.asia/api/v1/clients/ \
--header 'Authorization: Bearer <token>'
{
"results": [
{
"type": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_on": 1619740800,
"updated_on": 1619740800,
"bank_account": "<string>",
"bank_code": "<string>",
"email": "jsmith@example.com",
"phone": "+44 45643564564",
"full_name": "<string>",
"personal_code": "<string>",
"street_address": "<string>",
"country": "<string>",
"city": "<string>",
"zip_code": "<string>",
"state": "<string>",
"shipping_street_address": "<string>",
"shipping_country": "<string>",
"shipping_city": "<string>",
"shipping_zip_code": "<string>",
"shipping_state": "<string>",
"cc": [
"jsmith@example.com"
],
"bcc": [
"jsmith@example.com"
],
"legal_name": "<string>",
"brand_name": "<string>",
"registration_number": "<string>",
"tax_number": "<string>"
}
],
"next": "<string>",
"previous": "<string>"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
OK
The response is of type object
.
curl --request GET \
--url https://gate.chip-in.asia/api/v1/clients/ \
--header 'Authorization: Bearer <token>'
{
"results": [
{
"type": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_on": 1619740800,
"updated_on": 1619740800,
"bank_account": "<string>",
"bank_code": "<string>",
"email": "jsmith@example.com",
"phone": "+44 45643564564",
"full_name": "<string>",
"personal_code": "<string>",
"street_address": "<string>",
"country": "<string>",
"city": "<string>",
"zip_code": "<string>",
"state": "<string>",
"shipping_street_address": "<string>",
"shipping_country": "<string>",
"shipping_city": "<string>",
"shipping_zip_code": "<string>",
"shipping_state": "<string>",
"cc": [
"jsmith@example.com"
],
"bcc": [
"jsmith@example.com"
],
"legal_name": "<string>",
"brand_name": "<string>",
"registration_number": "<string>",
"tax_number": "<string>"
}
],
"next": "<string>",
"previous": "<string>"
}