---
title: "Retrieve a list of outdials."
method: GET
path: "/outdials"
tags: ["Outdial"]
---

# Retrieve a list of outdials.

`GET /outdials`

Gets a list of outdials based on the specified page size and page token.

## Query parameters

- `page_size` integer
- `page_token` string

## Response `200`

A list of outdials.

- 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` OutdialManagerOutdial[]
    - `id` string, uuid — The unique identifier for the outdial.
    - `customer_id` string, uuid — The unique identifier for the customer associated with the outdial. Returned from the `GET /customers` response.
    - `campaign_id` string, uuid — The unique identifier of the campaign. Returned from the `POST /campaigns` or `GET /campaigns` response.
    - `name` string — The name of the outdial.
    - `detail` string — The detailed description of the outdial.
    - `data` string — The data associated with the outdial.
    - `tm_create` string, date-time — Timestamp when the outdial was created.
    - `tm_update` string, date-time — Timestamp when the outdial was last updated.
    - `tm_delete` string, date-time — Timestamp when the outdial was deleted.

## Other responses

- `401` — Authentication required (UNAUTHENTICATED).
- `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)
