Skip to main content
GET
/
api
/
{session}
/
chats
/
overview
Obter visão geral das conversas. Inclui tudo o que é necessário para construir a página de interface "visão geral das suas conversas" - id da conversa, nome, foto, última mensagem. Ordenado por timestamp da última mensagem
curl --request GET \
  --url https://{host}/api/{session}/chats/overview \
  --header 'apikey: <api-key>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "picture": "<string>",
    "lastMessage": {},
    "_chat": {}
  }
]

Documentation Index

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

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

Authorizations

apikey
string
header
required

Sua chave de API do Wappfy (obtenha em dash.wappfy.com.br)

Path Parameters

session
string
required

O nome da sessão (instanceName) para obter as conversas

Query Parameters

limit
number
default:20
offset
number
ids
string[]

Filtrar por IDs de conversa

Response

200 - application/json
id
string
required
name
string | null
required
picture
string | null
required
lastMessage
object
required
_chat
object
required