Skip to main content
DELETE
/
v1
/
apps
/
{id}
Delete Application
curl --request DELETE \
  --url https://api.vertracloud.app/v1/apps/{id}
{
  "response": {
    "id": "app-abc123def456"
  }
}
id
string
required
The application ID to delete.

Response

response
object
The response containing the ID of the deleted application.
{
  "response": {
    "id": "app-abc123def456"
  }
}

Error Responses

code
string
The error code indicating the reason for the failure. Possible values:
  • UNAUTHORIZED: The user is not authenticated or does not have 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.
message
string
A descriptive message providing additional details about the error.
{
  "code": "APP_NOT_FOUND"
}