API uç noktası:
https://goo.vc/api/v1/spaces?tr
Talep örneği:
curl --location --request GET 'https://goo.vc/api/v1/spaces?tr' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
search
search_by
name
. Varsayılan değer: name
.sort_by
id
, İsim için name
. Varsayılan değer: id
.sort
desc
, Yükselen için asc
. Varsayılan değer: desc
.per_page
10
, 25
, 50
, 100
. Varsayılan değer: 10
.API uç noktası:
https://goo.vc/api/v1/spaces/{id}?tr
Talep örneği:
curl --location --request GET 'https://goo.vc/api/v1/spaces/{id}?tr' \ --header 'Accept: application/json' \ --header 'Authorization: Bearer {api_key}'
API uç noktası:
https://goo.vc/api/v1/spaces?tr
Talep örneği:
curl --location --request POST 'https://goo.vc/api/v1/spaces?tr' \ --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
. Varsayılan değer: 1
.API uç noktası:
https://goo.vc/api/v1/spaces/{id}?tr
Talep örneği:
curl --location --request PUT 'https://goo.vc/api/v1/spaces/{id}?tr' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --header 'Authorization: Bearer {api_key}'
name
color
1
, 2
, 3
, 4
, 5
, 6
.API uç noktası:
https://goo.vc/api/v1/spaces/{id}?tr
Talep örneği:
curl --location --request DELETE 'https://goo.vc/api/v1/spaces/{id}?tr' \ --header 'Authorization: Bearer {api_key}'