Update an existing Interaction
TODO: Resource-level docs
Update an existing Interaction.
Path parameters
-
InteractionSid
string Required The Interaction Sid for this channel.
-
Sid
string Required The unique string created by Twilio to identify an Interaction Channel resource.
POST
/v1/Interactions/{InteractionSid}/Channels/{Sid}
curl \
-X POST https://flex-api.twilio.com/v1/Interactions/{InteractionSid}/Channels/{Sid} \
--user "username:password" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d 'Status=close'
Request example
{
"Status": "close"
}
Request examples
{
"Status": "close"
}
Response examples (200)
{
"interaction_sid": "string",
"links": {},
"sid": "string",
"type": "voice",
"url": "https://example.com"
}
Response examples (200)
{
"interaction_sid": "string",
"links": {},
"sid": "string",
"type": "voice",
"url": "https://example.com"
}