Server SDKs
Build AI agents, control calls, send messages, and more
Dequeue a member from a queue, redirecting the call to a new LAML URL.
format: "uuid"
format: "uri"
POST
>=1
>=0
1{2 "call_sid": "b3877c40-da60-4998-90ad-b792e98472ca",3 "account_sid": "b3877c40-da60-4998-90ad-b792e98472af",4 "queue_sid": "b3877c40-da60-4998-90ad-b792e98472qu",5 "date_enqueued": "Wed, 26 Sep 2018 18:00:00 +0000",6 "position": 1,7 "wait_time": 30,8 "member_type": "laml_call",9 "uri": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472af/Queues/b3877c40-da60-4998-90ad-b792e98472qu/Members/b3877c40-da60-4998-90ad-b792e98472ca.json"10}
1import { RestClient } from "@signalwire/sdk";23const client = new RestClient({4 project: "your-project-id",5 token: "your-api-token",6 host: "your-space.signalwire.com"7});89await client.compat.queues.dequeueMember(10 "QU...", "CA...",11 { Url: "https://example.com/dequeue" }12);