Skip to main content
POST
/
custom-dialing-pools
Create a new custom dialing pool
curl --request POST \
  --url https://api.cleartalk.ai/custom-dialing-pools \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "phone_numbers": [
    "+12345678901",
    "+19876543210"
  ],
  "pool_name": "East Coast Pool"
}
'

Authorizations

x-api-key
string
header
required

API Key for authentication

Body

application/json
phone_numbers
string[]
required

Array of phone numbers to include in the pool. All numbers must be valid US phone numbers with +1 prefix.

Example:
["+12345678901", "+19876543210"]
pool_name
string
required

Name for the custom dialing pool

Example:

"East Coast Pool"

Response

201

Custom dialing pool created successfully