Skip to main content
Version: Next

Delete resource

POST 

http://localhost:8080/v2/resources/:resourceKey/deletion

Deletes a deployed resource. This can be a process definition, decision requirements definition, or form definition deployed using the deploy resources endpoint. Specify the resource you want to delete in the resourceKey parameter.

Request​

Path Parameters

    resourceKey int64required

    The key of the resource to delete. This can be the key of a process definition, the key of a decision requirements definition or the key of a form definition

Body

    operationReference int64

    Possible values: >= 1

    A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.

Responses​

The resource is deleted.

curl -L -X POST 'http://localhost:8080/v2/resources/:resourceKey/deletion' \
-H 'Content-Type: application/json' \
--data-raw '{
"operationReference": 0
}'
Request Collapse all
Base URL
http://localhost:8080/v2
Parameters
— pathrequired
Body
{
"operationReference": 0
}