Release Human Task
Endpoint: POST /api/human/tasks/{taskId}/release
Releases a previously claimed Human task. Use this endpoint if the user is unable to complete the task so that another user can claim it.
The invoking user should be one of the following:
- Cluster admin
- Task owner of the Human task
- Task claimant
Path parameters
Parameter | Description | Type | Required/ Optional |
---|---|---|---|
taskId | The unique identifier for the Human task execution to be released. | string | Required. |
Examples
Release a claimed Human task
Request
curl -X 'POST' \
'https://<YOUR_CLUSTER>/api/human/tasks/869ed0ee-cf07-11ef-a89d-86a819bd92bf/release' \
-H 'accept: */*' \
-H 'X-Authorization: <TOKEN>' \
-d ''
Response
Returns 200 OK, indicating that the Human task has been released successfully.