Update a Queue Member.
POST/Accounts/:AccountSid/Queues/:QueueSid/Members/:CallSid
Allows you to dequeue a given queue member and execute new XML Instructions.
Permissions
The API token must include the following scopes: Voice.
Request
Path Parameters
AccountSid uuidrequired
The unique identifier for the account this Queue is associated with.
QueueSid uuidrequired
The unique identifier for the queue.
CallSid uuidrequired
The unique identifier for the call. If set to Front
, the call to be updated will be the one at the front of the queue.
Query Parameters
Url stringrequired
Example: http://your-application.com/docs/voice.xml
Method string
Possible values: [GET
, POST
]
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
call_sid get_call_id (string)
The unique identifier for the call this Queue Member is associated with.
date_enqueued date_enqueued (string)
The date, in RFC 2822 format, the queue member was enqueued.
position position (string)
The member's current place in the queue.
uri uri (string)
The URL of this resource.
wait_time wait_time (string)
The number of seconds the member has been in the queue.
{
"call_sid": "b3877c40-da60-4998-90ad-b792e98472af",
"date_enqueued": "Wed, 26 Sept 2018 22:00:00 +0000",
"position": "1",
"uri": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472af/LamlBins/5184b831-184f-4209-872d-ccdccc80f2f1",
"wait_time": "300"
}
Loading...