v2

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

Fetch Communication

Retrieve a Communication.

get/v2/Conversations/{ConversationSid}/Communications/{Sid}

Response

OK

idstring required

Communication ID.

conversationIdstring required

Conversation ID.

accountIdstring required

Account ID.

channelIdstring

Channel-specific reference ID.

resourceIdstring

External resource identifier for this Communication (e.g. MessageSid for SMS/RCS/WhatsApp, TranscriptionSid + MessageIndex for Voice). When set, used for Communication deduplication/uniqueness within a Conversation.

createdAtstring date-time

Timestamp when this Communication was created.

updatedAtstring date-time

Timestamp when this Communication was last updated.

occurredAtstring date-time

ISO 8601 timestamp when the communication occurred.

Example response

{
  "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"
}