Outbound Numbers
List Outbound Numbers
Calls
Vector Stores
Conversational Pathways
- GETGet All Pathways Information
- GETGet Single Pathway Information
- POSTCreate Pathway
- POSTUpdate Pathway
- DELDelete Pathway
- Pathway Chat
- Pathway Versions
- Pathway Folders
Inbound Numbers
Outbound Numbers
Custom Tools
Web Agents
Custom Twilio Accounts
Batches
Outbound Numbers
List Outbound Numbers
Retrieves a list of all outbound phone numbers configured for your account, along with their associated settings.
GET
/
v1
/
outbound
curl --request GET \
--url https://app.luly.ai/api/v1/outbound \
--header 'authorization: <authorization>'
{
"outbound_numbers": [
{
"created_at": "2023-11-27T17:21:38.33359+00:00",
"phone_number": "+18005551234",
"last_initiated": "2023-12-08T21:47:49.808+00:00"
},
//...
]
}
Headers
Your API key for authentication.
Response
An array of outbound phone number objects.
{
"outbound_numbers": [
{
"created_at": "2023-11-27T17:21:38.33359+00:00",
"phone_number": "+18005551234",
"last_initiated": "2023-12-08T21:47:49.808+00:00"
},
//...
]
}
curl --request GET \
--url https://app.luly.ai/api/v1/outbound \
--header 'authorization: <authorization>'
{
"outbound_numbers": [
{
"created_at": "2023-11-27T17:21:38.33359+00:00",
"phone_number": "+18005551234",
"last_initiated": "2023-12-08T21:47:49.808+00:00"
},
//...
]
}