English
Stage Trigger (Non-Opportunity 2.0)
About 141 wordsLess than 1 minute
2026-01-19
Description
Stage Trigger (Non-Opportunity 2.0)
Request Specification
Method: POST + application/json
Endpoint: https://${cloud domain}/cgi/crm/v2/instance/triggerByRule?thirdTraceId=${Random String}
Headers: Refer to Common Parameters
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| data | Map | Yes | Data map |
| objectId | String | Yes | Data ID |
| entityId | String | Yes | Source entity apiName |
| objectId | String | Yes | Source object's _id (obtainable via query API) |
Request Example
{
"data": {
"entityId": "AccountObj",
"objectId": "6093aec2e4101b000138259c"
}
}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 response for logical judgment as errorMessage may change.
