Skip to main content
GET
/
conversation
/
notes
Listar notas
curl --request GET \
  --url http://localhost:3001/conversation/notes \
  --header 'X-JuriChat-Api-Key: <api-key>'
[
  {
    "id": "<string>",
    "content": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "user": {
      "id": "<string>",
      "name": "<string>",
      "imageUrl": "<string>"
    }
  }
]

Documentation Index

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

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

Authorizations

X-JuriChat-Api-Key
string
header
required

Chave de API do escritório (criada no painel). Envie o valor no header X-JuriChat-Api-Key.

Query Parameters

conversationId
string
required

ID da conversa cujas notas serão listadas.

Response

Default Response

id
string
required

ID da nota.

content
string
required

Texto da nota.

createdAt
string<date-time>
required

Data e hora de criação.

user
object
required

Autor da nota. Null se criado pelo sistema.