English
Related Team Query
About 141 wordsLess than 1 minute
2026-01-19
Description
Related team query
Request Specification
Method: POST + application/json
Endpoint: https://${cloud domain}/cgi/crm/team/get?thirdTraceId=${Random String}
Headers: Refer to Common Parameters
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| includeNull | Boolean | No | Whether to include null fields. false: not returned, true: returned. Default is false |
| apiName | String | Yes | Object apiName (currently supports AccountObj and OpportunityObj) |
| data | Map | Yes | Data map |
| dataID | String | Yes | Data ID |
Request Example
{
"includeNull": true,
"apiName": "AccountObj",
"data": {
"dataID": "289eb6014a344c3b8e62cafc94bd2fef"
}
}Response Parameters
| Parameter | Type | Description |
|---|---|---|
| traceId | string | Unique request ID |
| errorDescription | string | Error description |
| errorMessage | string | Error message |
| errorCode | Int | Error codes reference |
Response Example
{
"traceId": "E-O.827xxxxxx",
"errorDescription": "success",
"errorMessage": "OK",
"errorCode": 0
}Notes
- Do not use the message field in the response for logical judgment as errorMessage may change;
