---
title: "List queued outbound calls (optionally filtered by agent/team/paused)"
method: GET
path: "/v1/voice/outbound/queued"
tags: ["voice"]
---

# List queued outbound calls (optionally filtered by agent/team/paused)

`GET /v1/voice/outbound/queued`

## Query parameters

- `agent_id` string, uuid, nullable — Filter to a single bound agent.
- `team_id` string, uuid, nullable — Filter to a single bound team.
- `paused` boolean, nullable — True → only paused calls; False → only actively-queued calls.
- `limit` integer
- `cursor` string, nullable

## Response `200`

Successful Response

- CursorPageQueuedCall
  - `items` QueuedCall[], required
    - `conversation_id` string, uuid, required — The queued call's conversation id.
    - `to_number` string, nullable — Destination phone number (E.164).
    - `agent_id` string, uuid, nullable — Bound agent id (set for an agent-bound dial).
    - `team_id` string, uuid, nullable — Bound team id (set for a team-bound dial).
    - `paused` boolean, required — True if this call is individually paused (held out of dispatch).
    - `created_at` string, date-time, required — When the call was enqueued.
    - `eligible_at` string, date-time, nullable — Earliest time the call may dispatch (calling-window gate).
    - `queue_expires_at` string, date-time, nullable — Opt-in absolute deadline; the call is expired if undialed by then.
  - `next_cursor` string, nullable
  - `has_more` boolean, required

## Other responses

- `400` — Bad request
- `401` — Authentication required
- `422` — Validation Error

---

[API](https://skmtc.net/oneloop-hq/apis/feather-api.md) · [All operations](https://skmtc.net/oneloop-hq/apis/feather-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/oneloop-hq/feather-api/revisions/9cd7291d4228/schema)
