Skip to main content
DELETE
/
dispositions
/
{disposition_id}
cURL
curl --request DELETE \
  --url https://api.bolna.ai/dispositions/{disposition_id} \
  --header 'Authorization: Bearer <token>'
{
  "message": "Disposition deleted successfully",
  "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}

Documentation Index

Fetch the complete documentation index at: https://www.bolna.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Deletion is permanent and cannot be undone. Historical call execution results that already contain this disposition’s output are not affected — only future calls will stop evaluating it.

Authorization

  • Regular users can only delete dispositions they own (created_by matches their user ID).
  • Admins can delete any disposition.

Authorizations

Authorization
string
header
required

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

Path Parameters

disposition_id
string<uuid>
required

The ID of the disposition to delete.

Response

Disposition deleted successfully

Standard response for create/update/delete operations on a single disposition.

message
string
Example:

"Disposition created successfully"

id
string<uuid>
Example:

"3fa85f64-5717-4562-b3fc-2c963f66afa6"