v1

latestOpenAPI 3.0.0http://www.apache.org/licenses/LICENSE-2.0.html2026-07-14543167.2 KB
messages

Get chat messages from a chat channel. Results are paginated using cursor-based pagination.

get/chatChannel/{channelID}/messages

Path parameters

channelIDstring uuid required

Query parameters

startingAfterstring uuid

Cursor for pagination - return results after this chat message ID

limitinteger

Number of results to return (1-100)

Response

Successful response

hasMoreboolean required

Indicates if more chat messages are available after the last returned message.

Example response

{
  "data": [
    {
      "content": "<p>This is the chat message's content</p>"
    }
  ]
}