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

Authorization
string
header
required

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

Response

200 - application/json
OK
results
object[]

Record of a single customer of your business. Create one for each of your clients; you will be able to issue invoices/subscriptions for them later easily using /billing_templates/ API.

Each BillingTemplateClient (there can be many attached to a single BillingTemplate) will bind a single Client to a BillingTemplate.

next
string | null

The next page of pagination results. null if there are no more results.

previous
string | null

The previous page of pagination results. null if there was no previous page.