密钥新增
开发中
POST
/adminapi/setting.KeyPool/add
请求参数
Header 参数
token
string
可选
示例值:
{{adminToken}}
Body 参数application/json
type
integer
必需
channel
string
接口类型
key
string
密钥
appid
string
APPID
secret
string
Secret
status
integer
必需
示例
{
"type": 1,
"channel": "gpt3.5",
"key": "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",
"appid": "",
"secret": "",
"status": 0
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/adminapi/setting.KeyPool/add' \
--header 'token: {{adminToken}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"type": 1,
"channel": "gpt3.5",
"key": "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",
"appid": "",
"secret": "",
"status": 0
}'
返回响应
🟢200成功
application/json
Body
code
integer
必需
show
integer
必需
msg
string
必需
data
array[string]
必需
示例
{
"code": 1,
"show": 0,
"msg": "添加成功",
"data": []
}
修改于 2025-02-27 10:18:22