REST API

WorkManager Endpoint

Updated: March 6, 2024

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

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
{
  "total": 0,
  "success": 0,
  "filtered": 0
}

Learn More