Skip to main content
GET
/
user
/
list
Listar usuários
curl --request GET \
  --url https://api.multchats.com/v2/user/list \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "users": [
      {
        "id": "<string>",
        "signature": "<string>",
        "createdAt": "2023-11-07T05:31:56Z",
        "updatedAt": "2023-11-07T05:31:56Z",
        "user": {
          "id": "<string>",
          "name": "<string>",
          "email": "jsmith@example.com"
        }
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.multchats.com/llms.txt

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

Authorizations

Authorization
string
header
required

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

Response

Usuários listados com sucesso

success
boolean

Indica se a operação foi bem-sucedida

data
object