Skip to main content

Get client information

This operation allow you to query your registered client information.

HTTP Request

GET /clients

Header Parameters

HeaderDescription
Authorization 
required
The Bearer token created in
Get authorization Token
Content-Type
required
application/json

Example JSON Request:

GET /clients

Example JSON Response:

{
"success": true,
"code": 0,
"message": "OK",
"data": {
"client": {
"id": "65656565-ecb4-42d8-8555-858585858585",
"name": "Capsule Corp.",
"alias": "CAPCORP",
"code": "CAPSU",
"email": "[email protected]",
"available": 1000000.51,
"balance": 160.49,
"time_zone": "America/Mexico_City",
"status": "ACTIVE"
}
}
}