From 4ae9b305b00321643d7afc9d0c0a7d579d392c6e Mon Sep 17 00:00:00 2001 From: Devon White Date: Thu, 29 Jan 2026 08:18:42 -0500 Subject: [PATCH] Remove dequeue endpoints --- specs/signalwire-rest/space-api/_spec_.yaml | 57 --------------------- 1 file changed, 57 deletions(-) diff --git a/specs/signalwire-rest/space-api/_spec_.yaml b/specs/signalwire-rest/space-api/_spec_.yaml index 29f063072..7d6b44ef7 100644 --- a/specs/signalwire-rest/space-api/_spec_.yaml +++ b/specs/signalwire-rest/space-api/_spec_.yaml @@ -10495,60 +10495,3 @@ paths: application/json: schema: $ref: '#/components/schemas/QueueMember' - /queues/{queue_id}/members/dequeue: - post: - operationId: dequeueNextQueueMember - summary: Dequeue next member on the queue - description: | - Dequeues next member on the queue. - #### Permissions - The API token must include the following scopes: _Voice_. - tags: - - Queue Members - parameters: - - name: queue_id - in: path - description: The unique identifier (ID) of the queue. - required: true - schema: - type: string - format: uuid - responses: - '200': - description: OK - content: - application/json: - schema: - $ref: '#/components/schemas/QueueMember' - /queues/{queue_id}/members/{id}/dequeue: - post: - operationId: dequeueQueueMember - summary: Dequeue member on the queue - description: | - Dequeues member on the queue. - #### Permissions - The API token must include the following scopes: _Voice_. - tags: - - Queue Members - parameters: - - name: queue_id - in: path - description: The unique identifier (ID) of the queue. - required: true - schema: - type: string - format: uuid - - name: id - in: path - description: The unique identifier (ID) of the queue member. - required: true - schema: - type: string - format: uuid - responses: - '200': - description: OK - content: - application/json: - schema: - $ref: '#/components/schemas/QueueMember'