Workflow Instances Reactivate APIAPI Explorer
Introduction
API Introduction
Workflow Instances Reactivate API is used to reactivate the current workflow instance.
API Version
API Version | Update Time | Version Description |
v1 | 2023/08/01 | Original API |
API Calling
This API is used to reactivate the current process instance.
Request URL: https://api.jodoo.com/api/v1/workflow/task/revoke
Request Frequency: 20 times/second
Request Method: POST
Request Parameters:
Parameter | Required | Type | Description |
instance_id | Yes | String | The instance ID of the corresponding workflow instance that needs to be reactivated. |
flow_id | Yes | Number | The ID of the node that needs to be reactivated. |
Sample Request:
{
"instance_id": "64c7274cd172150007f2533d",
"flow_id": 1
}
Response Parameters:
Parameter | Type | Description |
status | String | success: indicating a successful API call failure: indicating a failed API call (with the error code, its description, and other information) |
code | Number | Error code (returned only for failure) |
message | String | Description of return code (returned only for failure) |
Sample Response:
{
"status": "success"
}