APIエンドポイント:
https://goo.vc/api/v1/spaces?ja
リクエスト例:
curl --location --request GET 'https://goo.vc/api/v1/spaces?ja' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
search
search_by
name
.sort_by
id
.sort
desc
.per_page
10
, 25
, 50
, 100
. デフォルトは10
.APIエンドポイント:
https://goo.vc/api/v1/spaces/{id}?ja
リクエスト例:
curl --location --request GET 'https://goo.vc/api/v1/spaces/{id}?ja' \ --header 'Accept: application/json' \ --header 'Authorization: Bearer {api_key}'
APIエンドポイント:
https://goo.vc/api/v1/spaces?ja
リクエスト例:
curl --location --request POST 'https://goo.vc/api/v1/spaces?ja' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --header 'Authorization: Bearer {api_key}' \ --data-urlencode 'name={name}'
name
color
1
, 2
, 3
, 4
, 5
, 6
. デフォルトは1
.APIエンドポイント:
https://goo.vc/api/v1/spaces/{id}?ja
リクエスト例:
curl --location --request PUT 'https://goo.vc/api/v1/spaces/{id}?ja' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --header 'Authorization: Bearer {api_key}'
name
color
1
, 2
, 3
, 4
, 5
, 6
.APIエンドポイント:
https://goo.vc/api/v1/spaces/{id}?ja
リクエスト例:
curl --location --request DELETE 'https://goo.vc/api/v1/spaces/{id}?ja' \ --header 'Authorization: Bearer {api_key}'