Skip to main content
GET
/
api
/
messages
/
webchat
/
{webchatId}
Get all messages for a webchat session (no auth)
curl --request GET \
  --url https://your-instance.example.com/api/messages/webchat/{webchatId}
{
  "messages": [
    {
      "id": "<string>",
      "text": "<string>",
      "sender": "<string>",
      "timestamp": 123,
      "attachments": [
        {}
      ],
      "senderInfo": {
        "type": "<string>",
        "name": "<string>"
      }
    }
  ]
}

Path Parameters

webchatId
string
required

Response

Webchat messages returned

messages
object[]