Inbox

Endpoints related to the unified inbox: chats that merge direct messages and post comments per participant.

List chats

get

Lists the current user's unified chats. Each chat merges a single participant's direct messages and post comments on one connected account, ordered by most recent activity. Supports cursor-based pagination and filtering by platform and account.

Authorizations
blotato-api-keystringRequired
Query parameters
limitinteger ยท min: 1 ยท max: 250Optional

Maximum number of chats to return. Defaults to 50.

Default: 50
cursorstringOptional

Opaque cursor returned by a previous call. Pass it to fetch the next page.

Responses
200

Default Response

application/json
cursorstringOptional

Cursor for the next page. Absent when there are no more chats.

get
/v2/inbox/chats

List chat items

get

Lists the merged timeline of direct messages and post comments for a single chat, ordered by creation time (most recent first). Supports cursor-based pagination.

Authorizations
blotato-api-keystringRequired
Path parameters
chatIdstringRequired
Query parameters
limitinteger ยท min: 1 ยท max: 250Optional

Maximum number of chat items to return. Defaults to 50.

Default: 50
cursorstringOptional

Opaque cursor returned by a previous call. Pass it to fetch the next page.

Responses
200

Default Response

application/json
itemsone of[]Required

Merged list of messages and comments.

or
cursorstringOptional

Cursor for the next page. Absent when there are no more items.

get
/v2/inbox/chats/{chatId}/items

Last updated