删除下级用户 API Key
- DELETE
/api/v3/accountCenter/apiKey
权重(IP): 5
删除指定下级用户的 API Key。
请求参数
| 参数名 | 参数类型 | 是否必须 | 描述 |
|---|---|---|---|
| subUserId | Long | 是 | 下级用户 UID。 |
| apiKey | String | 是 | 待删除的 API Key。 |
请求示例
{
"subUserId": 1234567890,
"apiKey": "weex_xxxxxxxxxxxxxxxxxxxxxxxx"
}
返回参数
| 字段名 | 类型 | 字段说明 |
|---|---|---|
| subUserId | Long | 下级用户 UID。 |
| apiKey | String | 已删除的 API Key。 |
| ts | Long | 操作成功时间戳,毫秒。 |
返回示例
{
"subUserId": 1234567890,
"apiKey": "weex_xxxxxxxxxxxxxxxxxxxxxxxx",
"ts": 1780000000000
}