English
Related Team Deletion
About 137 wordsLess than 1 minute
2026-01-19
Description
Delete related team members.
Request Specification
Method: POST + application/json
Endpoint: https://${Cloud Domain}/cgi/crm/team/delete?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 | List of data IDs |
| teamMemberEmployee | List | Yes | List of member IDs |
Request Example
{
"apiName": "AccountObj",
"data": {
"teamMemberEmployee": [
"FSUID_XXXXXX"
],
"dataIDs": [
"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 judgments, as errorMessage may change.
