Skip to main content
DELETE
/
process-definition
/
key
/
{key}
Delete By Key
curl --request DELETE \
  --url http://{host}:{port}/{contextPath}/process-definition/key/{key} \
  --header 'Authorization: Basic <encoded-value>'
This response does not have an example.

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

key
string
required

The key of the process definitions to be deleted.

Query Parameters

cascade
boolean

true, if all process instances, historic process instances and jobs for this process definition should be deleted.

skipCustomListeners
boolean
default:false

true, if only the built-in ExecutionListeners should be notified with the end event.

skipIoMappings
boolean
default:false

A boolean value to control whether input/output mappings should be executed during deletion. true, if input/output mappings should not be invoked.

Response

Request successful.