Update an existing Transfer.

POST /v1/Interactions/{InteractionSid}/Channels/{ChannelSid}/Transfers/{Sid}

Update an existing Transfer.

Path parameters

  • InteractionSid string Required

    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}$.

  • ChannelSid string Required

    The Channel Sid for this Transfer.

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

  • Sid string Required

    The unique string created by Twilio to identify a Transfer resource.

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

application/json

Body

object object

Responses

  • 200 application/json

    OK

    Hide headers attributes Show headers attributes
    • Access-Control-Allow-Origin string

      Specify the origin(s) allowed to access the resource

    • Access-Control-Allow-Methods string

      Specify the HTTP methods allowed when accessing the resource

    • Access-Control-Allow-Headers string

      Specify the headers allowed when accessing the resource

    • Access-Control-Allow-Credentials boolean

      Indicates whether the browser should include credentials

    • Access-Control-Expose-Headers string

      Headers exposed to the client

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

      The unique string created by Twilio to identify an Interaction Transfer resource.

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

    • instance_sid string | null

      The SID of the Instance associated with the Transfer.

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

    • account_sid string | null

      The SID of the Account that created the Transfer.

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

    • 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}$.

    • channel_sid string | null

      The Channel Sid for this Transfer.

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

    • execution_sid string | null

      The Execution SID associated with the Transfer.

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

    • type string

      The type of the Transfer. Can be: cold, warm.

      Values are warm, cold, or external.

    • status string

      The status of the Transfer. Can be: active, completed, failed.

      Values are active, failed, or completed.

    • from string | null

      The SID of the Participant initiating the Transfer.

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

    • to string | null

      The SID of the Participant receiving the Transfer.

    • note_sid string | null

      The SID of the Note associated with the Transfer.

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

    • summary_sid string | null

      The SID of the Summary associated with the Transfer.

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

    • date_created string(date-time) | null

      The date and time when the Transfer was created.

    • date_updated string(date-time) | null

      The date and time when the Transfer was last updated.

    • url string(uri) | null
POST /v1/Interactions/{InteractionSid}/Channels/{ChannelSid}/Transfers/{Sid}
curl \
 --request POST 'https://flex-api.twilio.com/v1/Interactions/{InteractionSid}/Channels/{ChannelSid}/Transfers/{Sid}' \
 --user "username:password" \
 --header "Content-Type: application/json"
Request examples
{}
Response examples (200)
{
  "to": "WWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "sid": "UXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "url": "https://flex-api.twilio.com/v1/Interactions/KDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Channels/UOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Transfers/UXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "from": "UTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "type": "cold",
  "status": "completed",
  "note_sid": "KQaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "channel_sid": "UOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "summary_sid": "KQaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "date_created": "2022-01-10T20:00:00Z",
  "date_updated": "2022-01-10T20:00:00Z",
  "instance_sid": "GOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "execution_sid": "QWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "interaction_sid": "KDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
}