Nurama Developers
Chats

Get mentionable public releases for a chat

Returns a paginated list of active public releases (share links) owned by the chat's project that can be mentioned with `{{publicMention:token}}` tokens. The project is resolved from the chat the same way as for mentionable submissions. Chats without a project scope return an empty page. Index pagination only.

GET
/chats/{chatId}/mentionable/publics

Returns a paginated list of active public releases (share links) owned by the chat's project that can be mentioned with {{publicMention:token}} tokens. The project is resolved from the chat the same way as for mentionable submissions. 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 title 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/publics"
{  "page": 0,  "limit": 0,  "totalPages": 0,  "totalResults": 0,  "queryAt": 0,  "results": [    {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "token": "string",      "title": "string",      "description": "string",      "status": "string",      "expiresAt": 0,      "createdAt": 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"      }    }  ]}