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

Authorizations

x-api-key
string
header
required

API Key for authentication

Path Parameters

poolId
string
required

Body

application/json
phone_numbers
string[]
required

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

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

Name for the custom dialing pool

Example:

"East Coast Pool Updated"

Response

200

Custom dialing pool updated successfully