v51

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-014102371.0 MB
Outdial

Create a new outdial.

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

post/outdials

Request body

campaign_idstring required
namestring required
detailstring required
datastring required

Response

The created outdial details.

idstring uuid

The unique identifier for the outdial.

customer_idstring uuid

The unique identifier for the customer associated with the outdial. Returned from the GET /customers response.

campaign_idstring uuid

The unique identifier of the campaign. Returned from the POST /campaigns or GET /campaigns response.

namestring

The name of the outdial.

detailstring

The detailed description of the outdial.

datastring

The data associated with the outdial.

tm_createstring date-time

Timestamp when the outdial was created.

tm_updatestring date-time

Timestamp when the outdial was last updated.

tm_deletestring date-time

Timestamp when the outdial was deleted.

Example response

{
  "id": "3c4d5e6f-7a8b-9012-cdef-012345678901",
  "customer_id": "7c4d2f3a-1b8e-4f5c-9a6d-3e2f1a0b4c5d",
  "campaign_id": "c3d4e5f6-a7b8-9012-3456-7890abcdef01",
  "name": "Q1 Target List",
  "detail": "Outbound dial list for Q1 campaign",
  "data": "custom-data",
  "tm_create": "2026-01-15T09:30:00.000000Z",
  "tm_update": "2026-01-15T09:30:00.000000Z",
  "tm_delete": "2026-01-15T09:30:00.000000Z"
}