Activate/Suspend Process Instance By Id
Activates or suspends a given process instance by id.
Method
PUT /process-instance/{id}/suspended
Parameters
Path Parameters
| Name | Description | 
|---|---|
| id | The id of the process instance to activate or suspend. | 
Request Body
A JSON object with the following properties:
| Name | Description | 
|---|---|
| suspended | A Booleanvalue which indicates whether to activate or suspend a given process instance. When the value is set totrue, the given process instance will be suspended and when the value is set tofalse, the given process instance will be activated. | 
Result
This method returns no content.
Response Codes
| Code | Media type | Description | 
|---|---|---|
| 204 | Request successful. | 
Example
Request
PUT /process-instance/aProcessInstanceId/suspended
{
  "suspended" : true
}
Response
Status 204. No content.