DELETE
/
v1
/
orgs
/
{org_id}
curl --request DELETE \
  --url https://api.bland.ai/v1/orgs/{org_id} \
  --header 'Content-Type: application/json' \
  --header 'authorization: <authorization>' \
  --data '{
  "delete_confirm": "<string>"
}'
{
  "data": null,
  "errors": null
}

Headers

authorization
string
required

Your API key for authentication.

Path Parameters

org_id
string
required

The unique identifier of the organization you want to delete.

Body

delete_confirm
string
required

The slug of the organization to confirm deletion.

Response

data
null

Always null upon successful deletion.

errors
null | array

null if successful; contains error details if the request fails.

{
  "data": null,
  "errors": null
}