# Add phone numbers as do-not-contact (DNC) to Aktify for company

`POST` `/api/v1/dncs`

Adds all provided phone numbers as DNC into Aktify for company.

## Request

### Headers

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `x-api-key` | string | yes | The Aktify-provided API key. |

### Body

Content type: `application/json` (required)

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `dncList` | array<object> | yes | The list of phone numbers to mark as DNC in Aktify for the company. (Example: `[{"phoneNumber":"(509) 555-1234"}]`) |
| `dncList[].phoneNumber` | string | yes | The phone number to mark as a DNC in Aktify for the company. (Example: `(509) 555-1234`) |

## Responses

### 201

The created DNCs.

Response body (`application/json`):

Response is an array; each item has the following fields:

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `phoneNumber` | string | yes | The phone number to mark as a DNC in Aktify for the company. (Example: `(509) 555-1234`) |
