Skip to main content
GET
/
outbound
/
agents
/
{agent_id}
/
can-call
Check Can Call
curl --request GET \
  --url https://api.example.com/outbound/agents/{agent_id}/can-call \
  --header 'Authorization: Bearer <token>'
{
  "can_call": true,
  "calls_today": 123,
  "calls_remaining": 123,
  "reason": "<string>",
  "next_available_time": "<string>",
  "current_schedule": "<string>"
}

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

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

agent_id
string<uuid>
required

Query Parameters

to_number
string | null

Response

Successful Response

Check if agent can make a call now.

can_call
boolean
required
calls_today
integer
required
calls_remaining
integer
required
reason
string | null
next_available_time
string | null
current_schedule
string | null