---
title: "Kick a queue call from the queue"
method: POST
path: "/queuecalls/{id}/kick"
tags: ["Queue"]
---

# Kick a queue call from the queue

`POST /queuecalls/{id}/kick`

Removes the specified queue call from the queue.

## Path parameters

- `id` string, required

## Response `200`

Successfully kicked the queue call.

- QueueManagerQueuecall
  - `id` string, uuid — The unique identifier of the queuecall. Returned from the `GET /queuecalls` response.
  - `customer_id` string, uuid — The unique identifier of the customer who owns this queuecall. Returned from the `GET /customers` response.
  - `reference_type` 'call'
  - `reference_id` string, uuid — The unique identifier of the referenced resource (e.g., a call). Returned from the corresponding resource endpoint.
  - `status` 'initiating' | 'waiting' | 'connecting' | 'kicking' | 'service' | 'done' | 'abandoned'
  - `service_agent_id` string, uuid — The unique identifier of the agent handling this queuecall. Returned from the `GET /agents` response.
  - `duration_waiting` integer — Duration for waiting in milliseconds
  - `duration_service` integer — Duration for service in milliseconds
  - `tm_create` string, date-time — The creation timestamp.
  - `tm_service` string, date-time — Timestamp when the queue call started service.
  - `tm_update` string, date-time — The last update timestamp.
  - `tm_delete` string, date-time — The deletion timestamp.

## Other responses

- `400` — Invalid request (INVALID_ARGUMENT).
- `401` — Authentication required (UNAUTHENTICATED).
- `403` — Insufficient permission (PERMISSION_DENIED).
- `404` — Resource not found (NOT_FOUND).
- `500` — Internal error (INTERNAL).

---

[API](https://skmtc.net/voipbin/apis/voipbin-api.md) · [All operations](https://skmtc.net/voipbin/apis/voipbin-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/voipbin/voipbin-api/versions/79e779080bcc/schema)
