English
Add Related Team
About 193 wordsLess than 1 minute
2026-01-19
Description
Add related team
Request Specification
Method: POST + application/json
Endpoint: https://${Cloud Domain}/cgi/crm/team/add?thirdTraceId=${Random String}
Headers: Refer to Common Parameters
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| apiName | String | Yes | Object apiName (Currently supports AccountObj and OpportunityObj) |
| data | Map | Yes | Data map |
| dataIDs | List | Yes | Data ID list |
| teamMemberEmployee | List | Yes | Member ID list |
| teamMemberRole | String | Yes | Member role (1:Owner 2:Joint Follower 3:After-sales Service 4:Regular Member) |
| teamMemberPermissionType | String | Yes | Related team permission type (1:Read-only 2:Read-write) |
| ignoreSendingRemind | Boolean | No | Whether to ignore sending CRM notification, true means ignore, false means not ignore; default false |
Request Example
{
"apiName": "AccountObj",
"data": {
"teamMemberEmployee": [
"FSUID_XXXXXX"
],
"dataIDs": [
"289eb6014a344c3b8e62cafc94bd2fef"
],
"teamMemberRole": "1",
"ignoreSendingRemind": "false",
"teamMemberPermissionType": "1"
}
}Response Parameters
| Parameter | Type | Description |
|---|---|---|
| traceId | string | Request unique ID |
| errorDescription | string | Error description |
| errorMessage | string | Error message |
| errorCode | Int | Error Codes |
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;
