批量查询用户额度和来源
将 <BASE_URL> 替换为所在企业环境的 API 域名。
- Scope:
admin.v1.quota.read - 权限项:限额与计量读取(
quota) - 权限类型:读取
- 接口:POST
/api/openapi/v1/resolved-user-quota-queries
认证与请求头
使用应用 API Key 调用。当前接口只校验上方独立 Scope;读取、管理与执行权限互不隐含。
| 名称 | 位置 | 类型 | 必填 | 说明 | 示例 |
|---|---|---|---|---|---|
Authorization | header | string | 是 | 应用 API Key,使用 Bearer 方式传递。 | Bearer qwk_*** |
X-Request-Id | header | string | 否 | 可选的调用追踪标识;未传入时由服务端生成。 | req-20260831-001 |
请求参数
| 名称 | 位置 | 类型 | 必填 | 说明 | 示例 |
|---|---|---|---|---|---|
user_ids | body | array | null | 必填 | - | ["<string>"] |
请求示例
cURL
curl --request POST \
--url '<BASE_URL>/api/openapi/v1/resolved-user-quota-queries' \
--header 'Authorization: Bearer <API_KEY>' \
--header 'Content-Type: application/json' \
--data '{
"user_ids": [
"<string>"
]
}'响应
200 OK
| 名称 | 类型 | 必填 | 说明 | 示例 |
|---|---|---|---|---|
items | array | null | 是 | - | [{"configured_quota":{"per_user_limit":0,"source":{"expires_at":"2026-08-27T10:00:00Z","id":"<string>","name":"<string>","type":"individual","validity":"permanent"}},"error_code":"<string>","user_id":"<string>"}] |
响应示例
{
"items": [
{
"configured_quota": {
"per_user_limit": 0,
"source": {
"expires_at": "2026-08-27T10:00:00Z",
"id": "<string>",
"name": "<string>",
"type": "individual",
"validity": "permanent"
}
},
"error_code": "<string>",
"user_id": "<string>"
}
]
}default Flat business error
| 名称 | 类型 | 必填 | 说明 | 示例 |
|---|---|---|---|---|
code | string | 否 | Stable business error code | "<string>" |
detail | string | 是 | Human-readable error description | "<string>" |
details | OpenapiErrorDetails | 否 | - | {"field":"<string>","reason":"<string>","suggestion":"<string>"} |
details.field | string | 否 | Request field that failed validation | "<string>" |
details.reason | string | 否 | Stable validation failure reason | "<string>" |
details.suggestion | string | 否 | Suggested normalized value | "<string>" |
error | string | 是 | Stable HTTP error type | "<string>" |
响应示例
{
"code": "<string>",
"detail": "<string>",
"details": {
"field": "<string>",
"reason": "<string>",
"suggestion": "<string>"
},
"error": "<string>"
}