增加域名拉白最大数量
开发中
开发环境
http://39.100.59.112:8000
开发环境
http://39.100.59.112:8000
POST
http://39.100.59.112:8000
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Header 参数
Accept
string
必需
默认值:
application/json
Body 参数application/json
domain_uuid
string
域名
count
integer
拉白数量
示例
{
"domain_uuid": "string",
"count": 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 'http://39.100.59.112:8000/ip/maxnum' \
--header 'Accept;' \
--header 'Content-Type: application/json' \
--data-raw '{
"domain_uuid": "string",
"count": 0
}'
返回响应
🟢200成功
application/json
Body
code
integer
必需
message
string
必需
data
object
必需
id
integer
id
domain
string
域名
count
integer
必需
domain_uuid
string
必需
last_time
必需
示例
{
"code": 0,
"message": "string",
"data": {
"id": 0,
"domain": "string",
"count": 0,
"domain_uuid": "string",
"last_time": null
}
}