Referencia de APIChats / Conversation List
Get Conversation List by id
← Back to full API reference
GET
/v1/conversation-list/:idAuth required- Validated by Zod schema: getConversationListByIdSchema.
Request details
Path params
| Field | Required | Description |
|---|---|---|
| id | Yes | Required path parameter. |
Query params
| Field | Required | Description |
|---|---|---|
| includeContacts | No | Type: enumExample: true |
Default payloads
Path params
json
{
"id": 1
}Query
json
{
"includeContacts": "true"
}Sample response
json
{
"list": "<list>",
"contactsCount": "<contactsCount>"
}