Skip to main content

Delete Specific application

This endpoint allows you to delete a specific application and all its versions.

Endpoint​

DELETE /app/delete?id=<id>

Authentication​

HeaderValue
AuthorizationBearer <jwt_token>

Query Parameters​

ParameterTypeRequiredDescription
idstring✅The unique identifier of the application to delete

Example Request​

curl -X DELETE http://localhost:9000/app/delete?id=64145ebaedd163d59d52e1dc \
-H "Authorization: Bearer <jwt_token>"

Response​

Success Response (200 OK)​

{
"deleteAppResult.DeletedCount": 1
}

Response Fields​

FieldTypeDescription
deleteAppResult.DeletedCountnumberNumber of applications successfully deleted (should be 1 if successful)

Notes​

  • This operation permanently deletes the entire application
  • The deletion is irreversible - deleted applications cannot be recovered