分组

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

API接口:

GET
https://sd.la/api/v1/spaces

请求示例:

curl --location --request GET 'https://sd.la/api/v1/spaces' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
参数
类型
描述
search
可选择的 string
The search query.
sort
可选择的 string
分类. Possible values are: desc for 降序, asc for 升序. Defaults to: desc.
per_page
可选择的 int
链接列表每页显示数量. Possible values are: 10 to 100. Defaults to: 100.
显示

API接口:

GET
https://sd.la/api/v1/spaces/{id}

请求示例:

curl --location --request GET 'https://sd.la/api/v1/spaces/{id}' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
Store

API接口:

POST
https://sd.la/api/v1/spaces

请求示例:

curl --location --request POST 'https://sd.la/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. Defaults to: 1.
更新

API接口:

PUT PATCH
https://sd.la/api/v1/spaces/{id}

请求示例:

curl --location --request PUT 'https://sd.la/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://sd.la/api/v1/spaces/{id}

请求示例:

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