Workflow Tasks Transfer APIAPI Explorer
Introduction
API Introduction
The API is used to transfer workflow tasks.
API Calling
The API is used to transfer workflow tasks.
Request URL: https://api.jodoo.com/api/v1/workflow/task/transfer
Request Frequency: 20 times per second
Request Method: POST
Request Parameters:
Parameter | Required | Type | Description |
username | Yes | String | It refers to the User No. in Contacts. |
instance_id | Yes | String | Instance ID, the same as data_id |
task_id | Yes | String | Task ID (should correspond with the username) |
transfer_username | Yes | String | Transferred user |
comment | No | String | Approval comment |
Sample Request:
{
"username":"david",
"instance_id": "6358af7c1f4eab0007704076",
"task_id":"6358af8446f8db00072d6121",
"transfer_username":"karl"
}
Response Parameters:
Parameter | Type | Description |
status | String | success: indicating that the API call is successful failure: Indicating that the API call failed (with the error code and its description) |
code | Number | Error code |
message | String | Description of return code |
Sample Response:
Success Response Sample
{
"status": "success"
}