Enterprise Feature - Custom dialing is only available on Enterprise plans. Contact your Bland representative for access.
Retrieve details for a specific custom dialing pool using its unique identifier.
Your API key for authentication.
Path Parameters
The unique identifier of the custom dialing pool to retrieve.Format: UUID format (e.g., 550e8400-e29b-41d4-a716-446655440000
)
Response
The custom dialing pool object (present only if status is success
).
Unique identifier for the pool.
Organization ID that owns this pool.
Array of phone numbers in the pool.
UUID of associated Twilio credentials (or null if none).
Timestamp when the pool was created.
Array of error objects (present only if status is error
).Show error object properties
Error code indicating the type of error.
Human-readable error message.
curl -X GET "https://us.api.bland.ai/v1/custom-dialing-pools/550e8400-e29b-41d4-a716-446655440001" \
-H "Authorization: YOUR_API_KEY"
{
"status": "success",
"data": {
"id": "550e8400-e29b-41d4-a716-446655440001",
"owner_id": "550e8400-e29b-41d4-a716-446655440002",
"phone_numbers": ["+12345678901", "+19876543210", "+15551234567"],
"encrypted_key": "550e8400-e29b-41d4-a716-446655440000",
"created_at": "2024-01-15T10:30:00Z"
},
"errors": null
}