GET
/
clients
/
{id}
curl --request GET \
  --url https://api.getjusto.com/api/v2/clients/{id} \
  --header 'Authorization: Bearer <token>'
{
  "status": "ok",
  "data": {
    "_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
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Corresponde al identificador del cliente.

Response

200
application/json

success

The response is of type object.