Client
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.
Query parameters
-
regions array
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)
{
"data": [
{
"id": 0,
"ref_code": "string",
"client_name": "string",
"address_line": "string"
}
],
"status": "string",
"message": "string"
}