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

# Create a new custom dialing pool



## OpenAPI

````yaml post /custom-dialing-pools
openapi: 3.0.0
info:
  title: ClearTalk API
  description: The ClearTalk API Documentation
  version: '1.0'
  contact:
    name: Developer Support
    email: devsupport@cleartalk.ai
servers:
  - url: https://api.cleartalk.ai
    description: ClearTalk AI API Server
security: []
tags: []
paths:
  /custom-dialing-pools:
    post:
      tags:
        - custom-dialing-pools
      summary: Create a new custom dialing pool
      operationId: DialingPoolController_createCustomDialingPool
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateCustomDialingPoolDto'
      responses:
        '201':
          description: Custom dialing pool created successfully
      security:
        - apiKey: []
components:
  schemas:
    CreateCustomDialingPoolDto:
      type: object
      properties:
        phone_numbers:
          description: >-
            Array of phone numbers to include in the pool. All numbers must be
            valid US phone numbers with +1 prefix.
          example:
            - '+12345678901'
            - '+19876543210'
          type: array
          items:
            type: string
        pool_name:
          type: string
          description: Name for the custom dialing pool
          example: East Coast Pool
      required:
        - phone_numbers
        - pool_name
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key for authentication

````