cURL
curl --request GET \ --url https://api.getjusto.com/api/v2/clients \ --header 'Authorization: Bearer <token>'
{ "status": "ok", "data": { "totalPages": 123, "totalCount": 123, "hasNextPage": true, "hasPreviousPage": true, "status": "<string>", "items": [ { "_id": "<string>", "name": "<string>", "email": "<string>", "phone": "<string>", "firstLogin": "<string>", "lastLogin": "<string>", "ordersCount": 123, "firstOrder": "2023-11-07T05:31:56Z", "lastOrder": "2023-11-07T05:31:56Z", "pointsBalance": 123, "marketingEmailEnabled": true } ] } }
Usa este método para obtener el detalle de un cliente.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
success
The response is of type object.
object