Path parameters
-
The SID of the Workspace with the Task Channel to update.
-
The SID of the Task Channel resource to update.
Body
-
ChannelOptimizedRouting boolean
Whether the TaskChannel should prioritize Workers that have been idle. If
true
, Workers that have been idle the longest are prioritized. -
FriendlyName string
A descriptive string that you create to describe the Task Channel. It can be up to 64 characters long.
POST /v1/Workspaces/{WorkspaceSid}/TaskChannels/{Sid}
curl \
-X POST https://taskrouter.twilio.com/v1/Workspaces/{WorkspaceSid}/TaskChannels/{Sid} \
--user "username:password" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d 'ChannelOptimizedRouting=true&FriendlyName=string'
Request example
{
"ChannelOptimizedRouting": true,
"FriendlyName": "string"
}
Request examples
{
"ChannelOptimizedRouting": true,
"FriendlyName": "string"
}
Response examples (200)
{
"account_sid": "string",
"channel_optimized_routing": true,
"date_created": "2023-05-04T09:42:00+00:00",
"date_updated": "2023-05-04T09:42:00+00:00",
"friendly_name": "string",
"links": {},
"sid": "string",
"unique_name": "string",
"url": "https://example.com",
"workspace_sid": "string"
}
Response examples (200)
{
"account_sid": "string",
"channel_optimized_routing": true,
"date_created": "2024-05-04T09:42:00+00:00",
"date_updated": "2024-05-04T09:42:00+00:00",
"friendly_name": "string",
"links": {},
"sid": "string",
"unique_name": "string",
"url": "https://example.com",
"workspace_sid": "string"
}