Criar nota interna
curl --request POST \
--url https://api.jurichat.com/conversation/note \
--header 'Content-Type: application/json' \
--header 'x-jurichat-api-key: <api-key>' \
--data '
{
"conversationId": "<string>",
"note": "<string>"
}
'{
"conversationId": "<string>",
"type": "<string>",
"id": "<string>",
"userId": "<string>",
"direction": "<string>",
"messageAt": "2023-11-07T05:31:56Z",
"externalId": "<string>",
"externalStatus": "<string>",
"content": "<unknown>",
"metadata": "<unknown>"
}Conversations
Criar nota interna
Insere nota privada visível aos operadores na conversa.
POST
/
conversation
/
note
Criar nota interna
curl --request POST \
--url https://api.jurichat.com/conversation/note \
--header 'Content-Type: application/json' \
--header 'x-jurichat-api-key: <api-key>' \
--data '
{
"conversationId": "<string>",
"note": "<string>"
}
'{
"conversationId": "<string>",
"type": "<string>",
"id": "<string>",
"userId": "<string>",
"direction": "<string>",
"messageAt": "2023-11-07T05:31:56Z",
"externalId": "<string>",
"externalStatus": "<string>",
"content": "<unknown>",
"metadata": "<unknown>"
}Authorizations
Chave de API do escritório (criada no painel). Envie o valor no header x-jurichat-api-key.
Body
application/json
Response
Default Response
ID da conversa.
Tipo do registro criado.
ID da nota criada.
ID do autor. Null se criado pelo sistema.
Direção da mensagem (interno).
Data e hora da nota.
ID externo. Null se não aplicável.
Status no canal externo. Null se não aplicável.
Conteúdo da nota.
Dados adicionais. Null se não houver.
⌘I