v1

latestOpenAPI 3.0.12026-07-26222700728.0 KB
Conversations

Get conversation messages

Get messages for the given conversation

get/v6/conversations/{id}/messages

Path parameters

idstring required

The id of the conversation

Query parameters

cursorstring nullable

Cursor from the previous paginated response

Cursor from the previous paginated response

limitinteger

Page size, i.e. number of items to return per page

Page size, i.e. number of items to return per page

Response

Success

result'SUCCESS' | 'FAILURE'

The result of the action performed.

Example response

{
  "data": [
    {
      "id": "msg_67890",
      "author": {
        "email": "user@example.com"
      },
      "text": "Let's discuss the new feature requirements",
      "status": "ACTIVE",
      "reactions": [
        {
          "authorInfo": [
            {
              "email": "user@example.com"
            }
          ]
        }
      ],
      "attachments": [
        {
          "id": "att_894321",
          "url": "https://files.example.com/attachment/receipt.pdf",
          "fileName": "receipt.pdf",
          "fileSize": "24 KB",
          "iconUrl": "https://cdn.sandbox.tight.com/icons/attachments/pdf.svg"
        }
      ]
    }
  ]
}