Calls
Intelligence
Conversational Pathways
- GETGet All Pathways Information
- GETGet Single Pathway Information
- POSTCreate Pathway
- POSTUpdate Pathway
- DELDelete Pathway
- Pathway Chat
- Pathway Versions
- Pathway Folders
Vector Knowledge Bases
Voices
Custom Tools
Web Agents
Custom Twilio Accounts
Account
Organizations
- POSTCreate Organization
- DELDelete Organization
- GETGet Organization
- GETGet Organization Members
- GETGet Organization's Current Service Version
- GETList Organization's Service Versions
- PATCHUpdate Organization's Service Version
- PATCHUpdate Organization Members
- PATCHUpdate Organization Member Permissions
- PATCHUpdate Organization Properties
- GETGet User Organization Memberships
- DELLeave Organization
- GETGet Organization Billing Information
- GETGet Organization Billing Refill Information
SMS
Geospatial Dialing Pools
List Geospatial Dialing Pools
Retrieve all geospatial dialing pools for your organization.
GET
/
v1
/
geospatial-dialing-pools
curl -X GET "https://us.api.bland.ai/v1/geospatial-dialing-pools" \
-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"
},
{
"id": "550e8400-e29b-41d4-a716-446655440003",
"owner_id": "550e8400-e29b-41d4-a716-446655440002",
"phone_numbers": ["+13105551234", "+19175555678"],
"encrypted_key": null,
"created_at": "2024-01-16T14:45:00Z"
}
],
"errors": null
}
Enterprise Feature - Geospatial dialing is only available on Enterprise plans.
Retrieve a list of all geospatial dialing pools that belong to your organization.
Headers
Your API key for authentication.
Response
Can be success
or error
.
Array of geospatial dialing pool objects (present only if status is success
).
curl -X GET "https://us.api.bland.ai/v1/geospatial-dialing-pools" \
-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"
},
{
"id": "550e8400-e29b-41d4-a716-446655440003",
"owner_id": "550e8400-e29b-41d4-a716-446655440002",
"phone_numbers": ["+13105551234", "+19175555678"],
"encrypted_key": null,
"created_at": "2024-01-16T14:45:00Z"
}
],
"errors": null
}
curl -X GET "https://us.api.bland.ai/v1/geospatial-dialing-pools" \
-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"
},
{
"id": "550e8400-e29b-41d4-a716-446655440003",
"owner_id": "550e8400-e29b-41d4-a716-446655440002",
"phone_numbers": ["+13105551234", "+19175555678"],
"encrypted_key": null,
"created_at": "2024-01-16T14:45:00Z"
}
],
"errors": null
}
Assistant
Responses are generated using AI and may contain mistakes.