DELETE
/
v1
/
organizations
/
{org_id}
/
apps
/
{app_id}
Remove Application from Organization
curl --request DELETE \
  --url https://api.vertracloud.app/v1/organizations/{org_id}/apps/{app_id} \
  --header 'Authorization: Bearer <token>'
{
  "status": "success"
}
org_id
string
required
The ID of the organization to remove the application from.
app_id
string
required
The ID of the application to remove from the organization.

Response

status
string
Indicates whether the call was successful. success if successful, error if not.
{
  "status": "success"
}

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:
  • FORBIDDEN: The user is not authenticated, lacks sufficient permissions, or is not an owner/admin of the organization.
  • APP_NOT_FOUND: The specified application does not exist or does not belong to the user.
{
  "status": "error",
  "code": "FORBIDDEN"
}