cURL
curl --request GET \ --url https://api.getmany.io/service/v1/master-inbox/rooms/{roomId}/stories \ --header 'Authorization: Bearer <token>'
{ "data": [ { "storyId": "<string>", "userId": "<string>", "userName": "<string>", "userPhotoUrl": "<string>", "message": "<string>", "createdAt": "2023-11-07T05:31:56Z", "attachments": [ { "objectReferenceId": "<string>", "objectType": "<string>", "metadata": [ { "key": "<string>", "value": "<string>" } ] } ] } ], "meta": { "pageSize": 123, "nextCursor": "<string>" } }
Returns a paginated list of messages (stories) for a specific chat room. Supports cursor-based pagination and optional text search.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Paginated chat stories with room participants
Show child attributes