curl "https://crm.vistum.com.br/api/v1/leads/cnt_cmnl5abc123/notes" \
-H "Authorization: Bearer vg_live_SUA_CHAVE_AQUI"
{
"data": [
{ "id": "note_1", "body": "Cliente pediu retorno na terça.", "authorName": "Carlos", "createdAt": "2026-07-20T14:00:00.000Z" }
],
"pagination": { "total": 1, "limit": 25, "offset": 0, "hasMore": false }
}
Anotações
Listar anotações
Lista as anotações internas de um contato (lead), aninhadas sob o lead.
GET
/
api
/
v1
/
leads
/
{id}
/
notes
curl "https://crm.vistum.com.br/api/v1/leads/cnt_cmnl5abc123/notes" \
-H "Authorization: Bearer vg_live_SUA_CHAVE_AQUI"
{
"data": [
{ "id": "note_1", "body": "Cliente pediu retorno na terça.", "authorName": "Carlos", "createdAt": "2026-07-20T14:00:00.000Z" }
],
"pagination": { "total": 1, "limit": 25, "offset": 0, "hasMore": false }
}
Uma anotação (
Aceita
ContactNote) é uma nota interna registrada no histórico de um contato. Todos os endpoints são aninhados sob o lead (/api/v1/leads/{id}/notes).
Autenticação
string
required
Bearer vg_live_<sua_chave> — API Key com escopo notes:readlimit (1–100, padrão 25) e offset.
curl "https://crm.vistum.com.br/api/v1/leads/cnt_cmnl5abc123/notes" \
-H "Authorization: Bearer vg_live_SUA_CHAVE_AQUI"
{
"data": [
{ "id": "note_1", "body": "Cliente pediu retorno na terça.", "authorName": "Carlos", "createdAt": "2026-07-20T14:00:00.000Z" }
],
"pagination": { "total": 1, "limit": 25, "offset": 0, "hasMore": false }
}
O DTO expõe o autor apenas por nome (
authorName), nunca por ID.