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>"
    }
  ]
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.