DELETE
/
v1
/
apps
/
{id}
Delete Application
curl --request DELETE \
  --url https://api.vertracloud.app/v1/apps/{id} \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "response": {
    "id": "v111d4af8cd74272a284831fbae14a8v"
  }
}
id
string
required
The ID of the application to delete.

Response

status
string
Indicates whether the call was successful. success if successful, error if not.
response
object
The response containing the ID of the deleted application.
{
  "status": "success",
  "response": {
    "id": "v111d4af8cd74272a284831fbae14a8v"
  }
}

Error Responses

status
string
Indicates whether the call was successful. error if not successful.
code
string
The error code indicating the reason for failure. Possible values:
  • UNAUTHORIZED: The user is not authenticated or lacks sufficient permissions.
  • APP_NOT_FOUND: The specified application does not exist.
  • APP_ID_REQUIRED: The application ID was not provided.
  • DELETE_APP_FAILED: The application could not be deleted.
{
  "status": "error",
  "code": "APP_NOT_FOUND"
}