outbound-config
Check Can Call
Check if agent can make an outbound call right now.
This checks:
- Current time against calling schedules
- Daily call limits
- Concurrent call limits
- Do Not Call lists (if enabled)
- Recipient timezone (if enabled)
GET
Check Can Call
Documentation Index
Fetch the complete documentation index at: https://docs.mrassistant.ai/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Query Parameters
Previous
Create Squad Outbound CampaignCreate an outbound calling campaign using a squad.
The campaign will be distributed across squad members based on:
- Agent availability
- Agent calling schedules
- Agent daily limits
- Squad routing strategy
Example:
```json
{
"squad_id": "squad-uuid",
"name": "Q4 Sales Campaign",
"targets": [
{"to_number": "+1234567890", "context": {"customer_id": "123"}},
{"to_number": "+0987654321", "context": {"customer_id": "456"}}
],
"routing_strategy": "load_based",
"concurrent_calls_per_agent": 2
}
```
Next
Check Can Call