curl --request POST \
--url https://api.bland.ai/v1/personas/{persona_id}/inbound/detach \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '
{
"inbound_numbers": [
"<string>"
]
}
'{
"data": {
"id": "12345678-1234-1234-1234-123456789012",
"name": "Support Agent",
"user_id": "12345678-1234-1234-1234-123456789012",
"inbound_numbers": [],
"created_at": "2025-09-23T15:13:36.348Z",
"updated_at": "2025-09-23T15:20:00.000Z"
},
"errors": null
}
Detach one or more inbound phone numbers from a persona. Detached numbers will no longer use the persona’s configuration and will have their persona settings cleared.
curl --request POST \
--url https://api.bland.ai/v1/personas/{persona_id}/inbound/detach \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '
{
"inbound_numbers": [
"<string>"
]
}
'{
"data": {
"id": "12345678-1234-1234-1234-123456789012",
"name": "Support Agent",
"user_id": "12345678-1234-1234-1234-123456789012",
"inbound_numbers": [],
"created_at": "2025-09-23T15:13:36.348Z",
"updated_at": "2025-09-23T15:20:00.000Z"
},
"errors": null
}
null on success, or a list of error objects if the request failed.{
"data": {
"id": "12345678-1234-1234-1234-123456789012",
"name": "Support Agent",
"user_id": "12345678-1234-1234-1234-123456789012",
"inbound_numbers": [],
"created_at": "2025-09-23T15:13:36.348Z",
"updated_at": "2025-09-23T15:20:00.000Z"
},
"errors": null
}
Was this page helpful?