Skip to main content

Delete Application

Endpoint: DELETE /api/applications/{id}

Deletes an application from your Conductor cluster.

Path parameters

ParameterDescriptionTypeRequired/ Optional
idThe unique identifier of the application to delete.stringRequired.

Response

  • Returns a message indicating that the application has been deleted.
  • Returns 404 if an invalid application ID is provided.

Examples

Delete an application

Request

curl -X 'DELETE' \
'https://<YOUR-SERVER-URL>/api/applications/243a8a88-9f77-48b2-9429-76793a123344' \
-H 'accept: application/json' \
-H 'X-Authorization: <TOKEN>'

Response

{
"message": "Deleted Application '243a8a88-9f77-48b2-9429-76793a123344'"
}