Nurama Developers
Chats

Get mentionable submissions for a chat

Returns a paginated list of active submissions in the chat's project that can be mentioned with `{{submissionMention:submissionId}}` tokens. The project is resolved from the chat (project/asset/task topic chats, project-scoped member chats, submission chats and project-scoped AI chats). Chats without a project scope return an empty page. Index pagination only.

GET
/chats/{chatId}/mentionable/submissions

Returns a paginated list of active submissions in the chat's project that can be mentioned with {{submissionMention:submissionId}} tokens. The project is resolved from the chat (project/asset/task topic chats, project-scoped member chats, submission chats and project-scoped AI chats). Chats without a project scope return an empty page. Index pagination only.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

chatId*string

The unique identifier of the chat

Formatuuid

Query Parameters

nameSearch?string

Optional partial subject search filter (case-insensitive)

sort?

Sort order (1 for ascending, -1 for descending)

Default

{  "createdAt": -1}
limit?number

Maximum number of results per page

Rangevalue <= 100
Default20
page?number

Page number

Default1

Response Body

application/json

curl -X GET "https://example.com/chats/497f6eca-6276-4993-bfeb-53cbbbba6f08/mentionable/submissions"
{  "page": 0,  "limit": 0,  "totalPages": 0,  "totalResults": 0,  "queryAt": 0,  "results": [    {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "subject": "string",      "description": "string",      "version": "string",      "status": "string",      "totalMessages": 0,      "lastMessageAt": 0,      "publishedAt": 0,      "chatId": "f255124e-3419-4f6e-b7ee-17a6577db94d",      "creator": {        "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",        "firstName": "string",        "lastName": "string",        "displayName": "string",        "avatar": "01d8bd6c-6014-46aa-b5b1-14d337c9c779",        "color": "string",        "awards": [          "staff"        ],        "accountType": "standard"      }    }  ]}