> ## Documentation Index
> Fetch the complete documentation index at: https://docs.goyappr.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Remove from DNC list

> Removes the entry. Outbound calls to this number will be allowed again
immediately. The same number can be re-added later.


Remove an entry from your company's Do-Not-Call list. After deletion, outbound calls to this number proceed normally — the number can be re-added later with `POST /do-not-call`.

Required scope: `do_not_call:manage`.

## Example request

```bash theme={null}
curl -X DELETE "https://api.goyappr.com/do-not-call/8c0e0f8a-1c11-4d3a-9a02-2b1e9d2f0001" \
  -H "Authorization: Bearer $YAPPR_API_KEY"
```

## Example response

```json theme={null}
{ "success": true }
```

## Errors

| HTTP | Code                 | When                                                     |
| ---- | -------------------- | -------------------------------------------------------- |
| 401  | `INSUFFICIENT_SCOPE` | API key lacks `do_not_call:manage`.                      |
| 404  | —                    | The id does not exist or belongs to a different company. |


## OpenAPI

````yaml DELETE /do-not-call/{id}
openapi: 3.1.0
info:
  title: Yappr API
  description: >
    Create and manage AI voice agents, purchase phone numbers, configure tools,
    and initiate calls — all via REST.
  version: 1.0.0
  contact:
    url: https://goyappr.com
servers:
  - url: https://api.goyappr.com
    description: Production
security:
  - apiKey: []
paths:
  /do-not-call/{id}:
    parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
          format: uuid
    delete:
      tags:
        - Do Not Call
      summary: Remove a phone number from the DNC list
      description: |
        Removes the entry. Outbound calls to this number will be allowed again
        immediately. The same number can be re-added later.
      operationId: deleteDoNotCall
      responses:
        '200':
          description: Removed
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
        '404':
          description: Not found
components:
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: >-
        Your Yappr API key (e.g. `ypr_live_...`). Generate one in the dashboard
        under **Settings → API Keys**.

````