v2

latestOpenAPI 3.0.1raw.githubusercontent.com2026-05-072126235.6 KB
ConversationsV2Communication

List Communications

Retrieve a list of Communications in a Conversation.

get/v2/Conversations/{ConversationSid}/Communications

Query parameters

channelIdstring

Resource identifier to filter communications

pageSizeinteger
Example:50

Maximum number of items to return

pageTokenstring

Page token for pagination

Response

OK

Example response

{
  "communications": [
    {
      "id": "conv_communication_01k1etk2y5f1y9fpe2epfdtvv2",
      "conversationId": "conv_conversation_01k1etk2y5f1y9fpe2epfdtvv2",
      "accountId": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
      "author": {
        "address": "+18005550100",
        "channel": "SMS",
        "participantId": "conv_participant_01k1etx3jbfx88476ccja0889c"
      },
      "content": {
        "type": "TEXT",
        "text": "Hello, I need help with my order"
      },
      "resourceId": "SM12345678901234567890123456789012",
      "recipients": [
        {
          "address": "+18005550102",
          "channel": "SMS",
          "participantId": "conv_participant_02m2fuy4lcgy99587ddkb1990d",
          "deliveryStatus": "DELIVERED"
        }
      ],
      "createdAt": "2023-07-01T12:15:00Z",
      "updatedAt": "2023-07-01T12:15:05Z"
    }
  ],
  "meta": {
    "key": "communications"
  }
}