GET
/
clients
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
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json

success

The response is of type object.