更新 key
POST
/custom_key/update
请求参数
Header 参数
Content-Type
string
必需
默认值:
application/json
Authorization
string
必需
默认值:
Bearer fk....
Body 参数application/json
key
string
必需
note
string
必需
daily_quota
integer
必需
monthly_quota
integer
必需
merchant_can_sell
enum<integer> | enum<null>
可选
枚举值:
01
enable_fetch
enum<integer> | enum<null>
是否开启联网功能
枚举值:
01
fetch_keyword
string | null
可选
fetch_max_tokens
integer | null
可选
示例
{
"key": "fk18xxxx",
"note": "笔记、标签等等",
"daily_quota": 10000,
"monthly_quota": 300000,
"merchant_can_sell": 1,
"enable_fetch": 0,
"fetch_keyword": "@搜索",
"fetch_max_tokens": 2000
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://oa.api2d.net/custom_key/update' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
"key": "fk18xxxx",
"note": "笔记、标签等等",
"daily_quota": 10000,
"monthly_quota": 300000,
"merchant_can_sell": 1,
"enable_fetch": 0,
"fetch_keyword": "@搜索",
"fetch_max_tokens": 2000
}'
返回响应
🟢200OK
application/json
Body
object {0}
示例
{
"code": 0,
"data": {
"custom_key": {
"id": 154731,
"uid": 186009,
"key": "...",
"enabled": 1,
"point": 0,
"minute_times": 60,
"last_access_time": null,
"type_id": "290",
"created_at": "2023-05-27T04:25:45.000000Z",
"updated_at": "2023-05-27T04:27:48.000000Z",
"daily_times": 0,
"daily_quota": "10000",
"note": "2",
"monthly_times": 0,
"monthly_quota": "300000"
},
"daily_quota": "10000",
"monthly_quota": "300000"
}
}
修改于 2024-06-17 13:09:53