# OpenAPI 接口 - 有状态会员+用户资源合并（场景A）

> 模块标识：openapi  |  接口数量：76

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

**路径**：				/openapi/memberships/resources/combined-valid-check

**功能说明**：
返回用户 RBAC 绑定资源与有状态会员授权模块资源的并集。先校验会员有效性，再合并用户角色资源；会员无效时仍返回用户自身资源。

### 请求参数
```json
{
  "headers": [
    {
      "name": "Authorization",
      "type": "string",
      "required": true,
      "description": "用户登录令牌，格式 Bearer TOKEN"
    },
    {
      "name": "X-Site",
      "type": "string",
      "required": true,
      "description": "站点标识"
    }
  ]
}
```

### 响应示例
```json
{
  "success": {
    "code": "0000",
    "message": "校验通过",
    "data": {
      "resources": [],
      "resourcesByType": {},
      "resourceUrls": []
    }
  }
}
```

### 注意事项
- 与 /openapi/memberships/resources/valid-check 的区别：本接口始终包含用户 RBAC 资源
- 相同资源按 _id/id 去重

