List messages
List messages in a thread with pagination support
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
The ID of the thread to list messages from.
^[0-9a-z]+$Query Parameters
The ID of the message to start pagination from. Must be used together with cursorTimestamp. Cannot be combined with the cursor object parameter.
^[0-9a-z]+$The timestamp of the message to start pagination from. Must be used together with cursorId. Cannot be combined with the cursor object parameter.
"2025-11-10T18:03:16.000Z"
Pagination cursor using bracket notation. Omit to start from the beginning. Prefer using cursorId and cursorTimestamp instead for simpler query string encoding.
Maximum number of messages to return per page. Defaults to 50, maximum 100.
1 <= x <= 10050
Response
OK
^[0-9a-z]+$^[0-9a-z]+$Whether the thread is currently syncing older messages from the platform. If true, additional messages may become available shortly. Poll the endpoint to retrieve newly synced messages.