Client

GET /client/list

This API is to get all the list of available clients. This is an authendicated API so we need to pass bearer token in request header to access the data.

Headers

  • Authorization string Required
  • Accept string

Query parameters

  • regions array

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • status string
    • data array[object]
      Hide data attributes Show data attributes object
      • id integer
      • client_name string
      • ref_code string
      • address_line string
    • message string
GET /client/list
curl \
 --request GET 'https://api-console.logezy.co/v1/client/list' \
 --header "Authorization: Bearer your-access-token" \
 --header "Accept: application/json"
Response examples (200)
{
  "data": [
    {
      "id": 0,
      "ref_code": "string",
      "client_name": "string",
      "address_line": "string"
    }
  ],
  "status": "string",
  "message": "string"
}