# 删除客服分组

请求方式:POST

请求地址:https://$basehost/gateway/eaopen/DelCustomerServiceCategory

body参数

{
  "category_id": 2001
}
字段 类型 必填 说明
category_id uint64 客服分组id ,若该分组下有客服账号,则删除后对应的客服账号会自动移入默认分组下

返回值:

{
  "data": {},
  "errcode": 0,
  "errmsg": "",
  "hint": "eJB8GJIL3RfZwVVWH5wA"
}

返回说明

字段 类型 说明
errcode int 状态码,0为正常,非0代表错误
errmsg string 错误信息
hint string 请求日志ID

完整请求示例:

curl -X POST https://$basehost/gateway/eaopen/DelCustomerServiceCategory \
     -H 'Content-Type: application/json; charset=UTF-8' \
     -H 'Token: c2NdxDHKXIJ5j1zrhJeq2eJEHjh9xxx' \
     -d '{
        "category_id": 2001
}'
最后更新时间: 2024/6/17 18:24:09