---
title: "List providercalls"
method: GET
path: "/providercalls"
tags: ["ProviderCall"]
---

# List providercalls

`GET /providercalls`

Returns a paginated list of providercall audit records. Admin-only
(PermissionProjectSuperAdmin) — because that role is platform-level,
the list is cross-customer (matches GET /providercalls/{id} and
DELETE /providercalls/{id}). Optional `provider_id` filter narrows
to records for a single provider.

## Query parameters

- `page_size` integer
- `page_token` string
- `provider_id` string, uuid

## Response `200`

A list of providercalls.

- object
  - `next_page_token` string — Cursor token for the next page of results. Pass this value as the page_token parameter in the next request.
  - `result` RouteManagerProviderCall[]
    - `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

- `401` — Authentication required (UNAUTHENTICATED).
- `403` — Insufficient permission (PERMISSION_DENIED).
- `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/revisions/79e779080bcc/schema)
