Skip to main content

Delete specific version of application

Delete a specific version of an application by its unique identifier.

Endpoint

DELETE /apps/delete?id=<id>

Authentication

HeaderValue
AuthorizationBearer <jwt_token>

Query Parameters

ParameterTypeRequiredDescription
idstringThe unique identifier of the specific version to delete

Example Request

curl --location 'http://localhost:9000/apps/delete?id=653a5e4f51ce5114611f5abb' \
--header 'Authorization: Bearer <jwt_token>'

Response

Success Response (200 OK)

{
"deleteSpecificAppResult.DeletedCount": 1
}

Response Fields

FieldTypeDescription
deleteSpecificAppResult.DeletedCountnumberNumber of versions successfully deleted (should be 1 if successful)

Notes

  • This operation permanently deletes the specific version and all its associated artifacts
  • The deletion is irreversible - deleted versions cannot be recovered
  • Only the specified version is deleted, other versions of the same application remain unaffected