Skip to main content
DELETE
/
api
/
v1
/
Account
/
{auth_id}
/
Application
/
{app_id}
Delete an Application
curl --request DELETE \
  --url https://api.vobiz.ai/api/v1/Account/{auth_id}/Application/{app_id}/ \
  --header 'X-Auth-ID: <api-key>' \
  --header 'X-Auth-Token: <api-key>'
"<string>"

Documentation Index

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

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

DELETE https://api.vobiz.ai/api/v1/Account/{auth_id}/Application/{app_id}/
Permanently deletes an application.
Authentication required:
  • X-Auth-ID - Your account Auth ID
  • X-Auth-Token - Your account Auth Token
  • Content-Type: application/json
Warning: Deletion is permanent and cannot be undone. If the application is associated with phone numbers, the deletion will be blocked until those associations are removed.

Arguments

No request parameters needed.

Response Examples

Success Response (204 No Content) - No response body.
{
  "error": "Application not found",
  "app_id": "12345678901234567"
}

cURL Example

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

Authorizations

X-Auth-ID
string
header
required

Your Vobiz account Auth ID

X-Auth-Token
string
header
required

Your Vobiz account Auth Token

Path Parameters

auth_id
string
required

Your account Auth ID

Example:

"MA_XXXXXX"

app_id
string
required
Example:

"12345678"

Response

Success

The response is of type string.