Pular para o conteúdo principal
POST
/
v1
/
agents
/
users
Create user
curl --request POST \
  --url https://api.quintus.tec.br/v1/agents/users \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "email": "alice@acme.com",
  "info": {
    "language": "pt-BR",
    "plan": "enterprise"
  },
  "name": "Alice Smith",
  "reference": "crm-customer-42"
}
'
{
  "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": {}
}

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

Corpo

application/json
reference
string | null

Client-controlled label, unique per tenant if provided. Used for dedup and search; never appears as URL identifier.

Maximum string length: 128
Pattern: ^[a-zA-Z0-9_\-:.]+$
name
string | null

Display name.

email
string<email> | null
phone
string | null
metadata
Metadata · object

Integrator-defined storage. Persisted with the user and returned on read. Not injected into the agent context.

info
Info · object

Personal user attributes that ARE injected into the agent's system context whenever this user is in a session (rendered as a <user_info> block alongside name/email/phone). Use sparingly - large payloads inflate every prompt.

Resposta

Successful Response

id
string
obrigatório
created_at
string<date-time>
obrigatório
updated_at
string<date-time>
obrigatório
reference
string | null
name
string | null
email
string | null
phone
string | null
metadata
Metadata · object
info
Info · object