Delete an Application

DELETEhttps://api.vobiz.ai/api/v1/Account/{authID}/Application/{appID}/

This API deletes an Application permanently.

Authentication Required:

  • Bearer Token: Include in Authorization header
  • X-Auth-ID Header: Your account ID (e.g., {Auth_ID})

Warning:

Deleting an application is permanent and cannot be undone. If the application is associated with phone numbers, the deletion may be blocked unless those associations are removed first.

Arguments

No request parameters needed.

Response Examples

Success Response (204 No Content)

(No response body)

Error Response (404 Not Found)
{
  "error": "Application not found",
  "app_id": "99999999"
}
Error Response (409 Conflict)
{
  "error": "Cannot delete application",
  "message": "Application is currently in use by 5 phone numbers"
}

cURL Example

cURL
curl -X DELETE https://api.vobiz.ai/api/v1/Account/{Auth_ID}/Application/12345678/ \
  -H "X-Auth-ID: YOUR_AUTH_ID" \
  -H "X-Auth-Token: YOUR_AUTH_TOKEN"