English
Team Editing
About 186 wordsLess than 1 minute
2026-01-19
Description
Team editing for related entities.
Request Specification
HTTP Method: POST + application/json
Request Path: https://${Cloud Domain}/cgi/crm/team/edit?thirdTraceId=${Random String}
Request 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 |
| dataID | String | Yes | Data ID |
| teamMemberInfos | List | Yes | Team member information list |
| teamMemberEmployee | List | Yes | Member ID list |
| teamMemberRole | String | Yes | Member role (1: Owner, 2: Co-follower, 3: After-sales service, 4: Regular member) |
| teamMemberPermissionType | String | Yes | Team permission type (1: Read-only, 2: Read-write) |
Request Example
{
"apiName": "AccountObj",
"data": {
"dataID": "289eb6014a344c3b8e62cafc94bd2fef",
"teamMemberInfos": [
{
"teamMemberEmployee": [
"FSUID_XXXXXX"
],
"teamMemberRole": "1",
"teamMemberPermissionType": "1"
}
]
}
}Response Parameters
| Parameter | Type | Description |
|---|---|---|
| traceId | string | Unique request 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
errorMessagefield for logical judgments, as it may change.
