GET
/
client
/
user
curl --request GET \
  --url https://simpleapi.com.br/api/v1/client/user \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "created_at": "<string>",
      "email": "<string>",
      "id": "<string>",
      "is_active": true,
      "metadata": {},
      "name": "<string>",
      "roles": [
        "<string>"
      ],
      "updated_at": "<string>"
    }
  ],
  "limit": 123,
  "page": 123,
  "total": 123
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page
integer
default:1

Número da página

limit
integer
default:10

Quantidade de usuários por página

Response

200
application/json
Lista de usuários do cliente

The response is of type object.