---
title: "Delete providercall by ID"
method: DELETE
path: "/providercalls/{id}"
tags: ["ProviderCall"]
---

# Delete providercall by ID

`DELETE /providercalls/{id}`

Soft-deletes the providercall record (sets `tm_delete`). The record is
no longer returned by `GET /providercalls`. The underlying Call records
are not affected. Admin-only (PermissionProjectSuperAdmin).

## Path parameters

- `id` string, uuid, required

## Response `200`

The deleted providercall record.

- RouteManagerProviderCall — An admin-triggered call placed through a specific provider. Captures the admin's original request info plus the IDs of calls/groupcalls that were created by the underlying call-creation step. Admin polls the referenced call IDs via `GET /calls/{id}` for per-call state.
  - `id` string, uuid — The unique identifier of the providercall. Returned from the `POST /providercalls` response.
  - `customer_id` string, uuid — The customer the record is attributed to. Set server-side from the authenticated admin's own customer.
  - `provider_id` string, uuid — The provider the call was forced through. Returned from the `GET /providers` response.
  - `flow_id` string, uuid — The flow executed after the destination answered. `00000000-0000-0000-0000-000000000000` when no flow was attached.
  - `source` CommonAddress — Contains source or destination detail info.
    - `type` '' | 'agent' | 'conference' | 'email' | 'extension' | 'line' | 'sip' | 'tel' | 'web_session' — Type of address.
    - `target` string — The address endpoint. Format depends on type: phone number for tel (e.g. +14155551234), UUID for agent/conference/extension, email for email, SIP URI for sip.
    - `target_name` string — Address's name.
    - `name` string — Optional label for this address.
    - `detail` string — Additional notes about this address.
  - `destinations` CommonAddress[] — The admin-supplied dial targets. One Call or Groupcall is created per destination, depending on destination type.
    - `type` '' | 'agent' | 'conference' | 'email' | 'extension' | 'line' | 'sip' | 'tel' | 'web_session' — Type of address.
    - `target` string — The address endpoint. Format depends on type: phone number for tel (e.g. +14155551234), UUID for agent/conference/extension, email for email, SIP URI for sip.
    - `target_name` string — Address's name.
    - `name` string — Optional label for this address.
    - `detail` string — Additional notes about this address.
  - `anonymous` 'yes' | 'no' | 'auto' — The anonymous caller-ID option requested. `auto` (default) resolves the same as `no` today.
  - `call_ids` string[] — IDs of the Call records that the call-creation step produced. Returned from the `POST /calls` response and retrievable via `GET /calls/{id}`.
  - `groupcall_ids` string[] — IDs of any Groupcall records produced when a destination resolved to a group-type address. Retrievable via `GET /groupcalls/{id}`.
  - `tm_create` string, date-time — The creation timestamp.
  - `tm_update` string, date-time — The last update timestamp.
  - `tm_delete` string, date-time — The deletion timestamp. `null` until soft-deleted.

## 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)
