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 \
 -X GET https://api-console.logezy.co/v1/client/list \
 -H "Authorization: Bearer your-access-token" \
 -H "Accept: application/json"
Response examples (200)
{
  "status": "string",
  "data": [
    {
      "id": 0,
      "client_name": "string",
      "ref_code": "string",
      "address_line": "string"
    }
  ],
  "message": "string"
}