Skip to main content
POST
/
conversation
/
forward-message
Encaminhar mensagens
curl --request POST \
  --url http://localhost:3001/conversation/forward-message \
  --header 'Content-Type: application/json' \
  --header 'X-JuriChat-Api-Key: <api-key>' \
  --data '
{
  "conversationId": [
    "<string>"
  ],
  "messageId": [
    "<string>"
  ]
}
'
{
  "success": true
}

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.

Body

application/json
conversationId
string[]
required

IDs das conversas de destino.

Pattern: ^[cC][^\s-]{8,}$
messageId
string[]
required

IDs das mensagens a serem encaminhadas.

Pattern: ^[cC][^\s-]{8,}$

Response

Default Response

success
boolean
required

Indica se o encaminhamento foi concluído com sucesso.