English
Modify Stage Pusher Stage via Stage Pusher Instance
About 147 wordsLess than 1 minute
2026-01-19
Description
Modify the stage of a stage pusher through its instance.
Request Specification
Method: POST + application/json
Path: https://${Enter cloud domain}/cgi/crm/v2/special/stageMoveTo?thirdTraceId=${random string}
Headers: Refer to Common Parameters
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| data | Map | Yes | Data map |
| workflowInstanceId | String | Yes | Workflow instance ID (obtained via querying workflow instance information on object data) |
| stageId | String | Yes | Stage status |
Request Example
{
"data": {
"workflowInstanceId": "5cf62cc3b631b2000107a404",
"stageId": "3"
}
}Response Parameters
| Parameter | Type | Description |
|---|---|---|
| traceId | string | Unique request ID |
| errorDescription | string | Error description |
| errorMessage | string | Error message |
| errorCode | Int | Error codes |
| data | Map | Response data |
Response Example
{
"traceId": "E-O.827xxxxxx",
"errorDescription": "success",
"errorMessage": "OK",
"errorCode": 0,
"data": {
}
}Notes
- Do not use the message field in the response for logical judgment, as errorMessage may change;
