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

# Bulk add DNC entries

> Add multiple phone numbers to Do Not Contact list



## OpenAPI

````yaml POST /dnc/bulk
openapi: 3.0.3
info:
  title: NativeMessage API
  version: 1.0.0
  description: Complete API documentation for NativeMessage platform
  contact:
    name: NativeMessage Support
    email: support@nativemessage.com
servers:
  - url: https://api-message.nativehub.live/api/v1
    description: Production server
security:
  - BearerAuth: []
  - ApiKeyAuth: []
paths:
  /dnc/bulk:
    post:
      tags:
        - DNC
      summary: Bulk add DNC entries
      description: Add multiple phone numbers to Do Not Contact list
      operationId: bulkAddDNC
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - numbers
              properties:
                numbers:
                  type: array
                  items:
                    type: string
                reason:
                  type: string
              example:
                numbers:
                  - '+8801812345678'
                  - '+8801812345679'
                  - '+8801812345680'
                reason: Bulk opt-out
      responses:
        '200':
          description: DNC entries added successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  added:
                    type: integer
                  skipped:
                    type: integer
                example:
                  added: 3
                  skipped: 0
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````