Pular para o conteúdo principal
GET
/
v1
/
agents
/
users
List users
curl --request GET \
  --url https://api.quintus.tec.br/v1/agents/users \
  --header 'X-API-Key: <api-key>'
{
  "items": [
    {
      "id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "reference": "<string>",
      "name": "<string>",
      "email": "<string>",
      "phone": "<string>",
      "metadata": {},
      "info": {}
    }
  ],
  "next_offset": 123
}

Documentation Index

Fetch the complete documentation index at: https://quintus.tec.br/docs/llms.txt

Use this file to discover all available pages before exploring further.

Autorizações

X-API-Key
string
header
obrigatório

Parâmetros de consulta

reference
string | null
email
string | null
created_after
string<date-time> | null
created_before
string<date-time> | null
limit
integer
padrão:20
Intervalo obrigatório: 1 <= x <= 100
offset
integer
padrão:0
Intervalo obrigatório: x >= 0

Resposta

Successful Response

items
UserResponse · object[]
obrigatório
next_offset
integer | null

Pass as offset to fetch the next page. Null = no more results.