{
  "module": {
    "module": "客户管理",
    "moduleKey": "customer"
  },
  "api": {
    "title": "解除客户授权",
    "method": "POST",
    "path": "/api/customers/unauthorize",
    "description": "解除当前用户对指定客户授予目标用户的授权",
    "requestParams": {
      "body": {
        "customerIds": "array｜必填，客户ID列表",
        "targetUserId": "string｜必填，接收授权的用户ID",
        "targetUserType": "string｜可选，用户类型（User/ClientUser）"
      }
    },
    "responseExample": {
      "success": {
        "code": "0000",
        "message": "客户授权解除成功",
        "data": {
          "revokedCount": 2
        }
      },
      "failure": {
        "code": "4000",
        "message": "解除客户授权失败",
        "data": null
      }
    }
  }
}