链接分组

Notes
专家级
应用API接口密钥应该作为承载令牌在请求的授权头中发送 获取您的应用API接口密钥.
目录

API 接口:

GET
https://4kz.cn/api/v1/spaces

请求示例:

curl --location --request GET 'https://4kz.cn/api/v1/spaces' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
参数
类型
描述
search
可选择的 string
The search query.
sort
可选择的 string
Sort by. Possible values are: desc for Descending, asc for Ascending.
显示

API 接口:

GET
https://4kz.cn/api/v1/spaces/{id}

请求示例:

curl --location --request GET 'https://4kz.cn/api/v1/spaces/{id}' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
创建

API 接口:

POST
https://4kz.cn/api/v1/spaces

请求示例:

curl --location --request POST 'https://4kz.cn/api/v1/spaces' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}' \
--data-urlencode 'url={url}'
参数
类型
描述
name
需要 string
The space name.
color
需要 integer
The color code. Possible values are: 1, 2, 3, 4, 5, 6.
更新

API 接口:

PUT PATCH
https://4kz.cn/api/v1/spaces/{id}

请求示例:

curl --location --request PUT 'https://4kz.cn/api/v1/spaces/{id}' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}' \
--data-urlencode 'url={url}'
参数
类型
描述
name
可选择的 string
The space name.
color
可选择的 integer
The color code. Possible values are: 1, 2, 3, 4, 5, 6.
删除

API 接口:

DELETE
https://4kz.cn/api/v1/spaces/{id}

请求示例:

curl --location --request DELETE 'https://4kz.cn/api/v1/spaces/{id}' \
--header 'Authorization: Bearer {api_key}'