Fetch a Channel for an Interaction

GET /v1/Interactions/{InteractionSid}/Channels/{Sid}

TODO: Resource-level docs

Fetch a Channel for an Interaction.

Path parameters

  • InteractionSid string Required

    The Interaction Sid for this channel.

  • Sid string Required

    The Channel Sid for this Participant.

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • interaction_sid string | null

      The Interaction Sid for this channel.

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^KD[0-9a-fA-F]{32}$.

    • sid string | null

      The unique string that identifies the resource

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^UO[0-9a-fA-F]{32}$.

    • type string | null

      The Interaction Channel's type.

      Values are voice, sms, email, web, whatsapp, or chat.

    • url string(uri) | null
GET /v1/Interactions/{InteractionSid}/Channels/{Sid}
curl \
 -X GET https://flex-api.twilio.com/v1/Interactions/{InteractionSid}/Channels/{Sid} \
 --user "username:password"
Response examples (200)
{
  "interaction_sid": "string",
  "links": {},
  "sid": "string",
  "type": "voice",
  "url": "https://example.com"
}