Skip to main content
PUT
/
process-instance
/
{id}
/
suspended
Activate/Suspend Process Instance By Id
curl --request PUT \
  --url http://{host}:{port}/{contextPath}/process-instance/{id}/suspended \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "suspended": true
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.eorion.com/llms.txt

Use this file to discover all available pages before exploring further.

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

id
string
required

The id of the process instance to activate or suspend.

Body

application/json
suspended
boolean | null

A Boolean value which indicates whether to activate or suspend a given instance (e.g. process instance, job, job definition, or batch). When the value is set to true, the given instance will be suspended and when the value is set to false, the given instance will be activated.

Response

204

Request successful.