REST API

WorkManager Endpoint

Updated: January 15, 2026

Run Works in Failure

POST /management/work-manager/run-works-in-failure

Body Parameters

Parameter Name Type Description Notes
timeoutSeconds int The work execution timeout in seconds. Optional
categoryFilter stringList Filter by work category Optional
dryRun boolean Do not effectively run works Optional, default is false

Response

If successful, returns a JSON representation of the reprocessed works status.

Status Codes

  • 200 OK - Success.

Sample

To specify an execution timeout:

curl -X POST -u Administrator:Administrator \
http://localhost:8080/nuxeo/api/v1/management/work-manager/run-works-in-failure
-d "timeoutSeconds=10&dryRun=true&categoryFilter=foo"
{
  "total": 0,
  "success": 0,
  "filtered": 0
}

Learn More