---
title: "Create a new outdial."
method: POST
path: "/outdials"
tags: ["Outdial"]
---

# Create a new outdial.

`POST /outdials`

Creates a new outdial with the specified information and returns the created outdial details.

## Request body

- object
  - `campaign_id` string, required
  - `name` string, required
  - `detail` string, required
  - `data` string, required

## Response `200`

The created outdial details.

- 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

- `400` — Invalid request (INVALID_ARGUMENT).
- `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)
