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.

Responses

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"
}