Enviar Mensagem

POST /public/api/v1/inboxes/{inbox_identifier}/contacts/{contact_identifier}/conversations/{conversation_id}/messages

Exemplo fetch

fetch("https://<host>/public/api/v1/inboxes/INBOX_ID/contacts/CONTACT_ID/conversations/CONV_ID/messages", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
    content: "Olá!",
    message_type: "incoming",
    content_type: "text"
  })
})

JSON de envio

{
  "content": "Olá!",
  "message_type": "incoming",
  "content_type": "text"
}

Resposta esperada

{
  "id": 9876,
  "content": "Olá!",
  "message_type": "incoming",
  "created_at": "2025-08-19T12:00:00Z"
}