添加用户组
# 描述
添加用户组
# 请求说明
请求方式:POST + application/json
请求路径:https://${填入所在云的域名}/cgi/crm/v2/special/usergroupInsert?thirdTraceId=${随机字符串}
请求头填写 :参考公共参数填写
# 请求参数
s
| 参数 | 类型 | 是否必填 | 说明 |
|---|---|---|---|
| data | Map | 是 | 数据集 |
| name | String | 是 | 用户组名称 |
| description | String | 是 | 用户组描述 |
# 请求示例
{
"data": {
"name": "大叔大婶",
"description": "大叔大婶"
}
}
# 返回参数
| 参数 | 类型 | 说明 |
|---|---|---|
| traceId | string | 请求唯一ID |
| errorDescription | string | 错误描述 |
| errorMessage | string | 错误信息 |
| errorCode | Int | 查看错误码 |
# 返回示例
{
"traceId": "E-O.827xxxxxx",
"errorDescription": "success",
"errorMessage": "OK",
"errorCode": 0
}
# 注意事项
- 不能使用返回值的message字段做逻辑判断,errorMessage会有变化;