仅供内部测试使用

域名

备注
专家级别
API密钥应该作为请求的Authorization标头中的Bearer令牌发送 获取你的API密钥.
列表

API端点:

GET
https://go.f27.net/api/v1/domains

请求示例:

curl --location --request GET 'https://go.f27.net/api/v1/domains' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
参数
类型
描述
search
可选的 string
搜索查询
search_by
可选的 string
搜索方式. 可能的值为:姓名name 默认值为:name
sort_by
可选的 string
排序方式. 可能的值为:创建日期id, 姓名name 默认值为:id
sort
可选的 string
排序. 可能的值为:降序desc, 升序asc 默认值为:desc
per_page
可选的 int
每页结果数. 可能的值为:10, 25, 50, 100 默认值为:10
显示

API端点:

GET
https://go.f27.net/api/v1/domains/{id}

请求示例:

curl --location --request GET 'https://go.f27.net/api/v1/domains/{id}' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
存储

API端点:

POST
https://go.f27.net/api/v1/domains

请求示例:

curl --location --request POST 'https://go.f27.net/api/v1/domains' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}' \
--data-urlencode 'name={name}'
参数
类型
描述
name
必需的 string
域名
index_page
可选的 string
重定向到索引页
not_found_page
可选的 string
重定向到404页面
更新

API端点:

PUT PATCH
https://go.f27.net/api/v1/domains/{id}

请求示例:

curl --location --request PUT 'https://go.f27.net/api/v1/domains/{id}' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}'
参数
类型
描述
index_page
可选的 string
重定向到索引页
not_found_page
可选的 string
重定向到404页面
删除

API端点:

DELETE
https://go.f27.net/api/v1/domains/{id}

请求示例:

curl --location --request DELETE 'https://go.f27.net/api/v1/domains/{id}' \
--header 'Authorization: Bearer {api_key}'