# 客户管理 - 客户授权

> 模块标识：customer  |  接口数量：7

## 接口说明
**方法**：	POST

**路径**：				/api/customers/authorize

**功能说明**：
将指定客户授权给目标用户

### 请求参数
```json
{
  "body": {
    "customerIds": "array｜必填，客户ID列表",
    "targetUserId": "string｜必填，接收授权的用户ID",
    "targetUserType": "string｜可选，用户类型（User/ClientUser）"
  }
}
```

### 响应示例
```json
{
  "success": {
    "code": "0000",
    "message": "客户授权成功",
    "data": {
      "createdCount": 2,
      "skippedCount": 1
    }
  },
  "failure": {
    "code": "4000",
    "message": "客户授权失败",
    "data": null
  }
}
```

