Disable Inbound
Disable inbound calling and tear down resources.
Endpoint
https://www.tabbly.io/api/inbound/disable
Disable Inbound
Disable inbound calling and clean up Tabbly inbound resources.
Endpoint
http
POST https://www.tabbly.io/api/inbound/disableAuthentication
See Introduction. This is a POST endpoint — include api_key in the JSON request body.
Request body
| Parameter | Type | Required | Description |
|---|---|---|---|
api_key |
string | Yes | Your organization API key |
agent_id |
string | Yes | Voice agent ID |
Example request
bash
curl -X POST "https://www.tabbly.io/api/inbound/disable" \
-H "Content-Type: application/json" \
-d '{
"api_key": "YOUR_API_KEY",
"agent_id": "6376"
}'Response
Success (200)
json
{
"status": "success",
"data": {
"action": "disabled",
"agent_id": "6376",
"voice_agent_id": "6376",
"phone_number": "+919876543210",
"inbound_active": false
}
}Error responses
json
{
"status": "error",
"message": "Human-readable error description"
}| HTTP status | When |
|---|---|
| 400 | Missing fields |
| 401 | Invalid API key |
| 403 | Wrong org or inactive subscription |
| 404 | Agent not found |