Skip to main content

Delete application

The endpoint provides functionality to delete an application.

HTTP request

DELETE https://$instanceId.id.nevis.cloud/nevis/api/v1/applications/$applicationId

Parameters

ParameterInTypeRequired / OptionalDescription
instanceIdpathstringrequiredThe ID of your Identity Cloud instance
applicationIdpathstringrequiredThe ID of the application

Example request

Set the ID of the application

applicationId=your-application-id-123
curl --request DELETE "https://$instanceId.id.nevis.cloud/nevis/api/v1/applications/$applicationId" \
--header "Authorization: Bearer $accessKey"

HTTP response

On success

HTTP/1.1 204 is returned if the application is successfully deleted.

On failure

HTTP/1.1 404 is returned if no application found with the given applicationId, with a detailed message.

HTTP/1.1 401 is returned if the authorization failed due to an invalid access key.

HTTP/1.1 500 is returned if an unexpected error occurred.