Alanlar

Notlar
Uzman seviyesi
API anahtarı, isteğin Yetkilendirme üstbilgisinde bir Taşıyıcı belirteci olarak gönderilmelidir. API anahtarınızı alın.
Liste

API uç noktası:

GET
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}'
Parametre
Tip
Açıklama
search
opsiyonel string
Arama sorgusu.
search_by
opsiyonel string
Şuna göre ara. Olası değerler şunlardır: İsim için name. Varsayılan değer: name.
sort_by
opsiyonel string
Göre sırala. Olası değerler şunlardır: Oluşturulduğu tarih için id, İsim için name. Varsayılan değer: id.
sort
opsiyonel string
Sırala. Olası değerler şunlardır: Alçalma için desc, Yükselen için asc. Varsayılan değer: desc.
per_page
opsiyonel integer
Sayfa başına sonuç. Olası değerler şunlardır: 10, 25, 50, 100. Varsayılan değer: 10.
Göster

API uç noktası:

GET
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}'
Mağaza

API uç noktası:

POST
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}'
Parametre
Tip
Açıklama
name
gerekli string
Alan adı.
color
opsiyonel integer
Renk kodu. Olası değerler şunlardır: 1, 2, 3, 4, 5, 6. Varsayılan değer: 1.
Güncelleme

API uç noktası:

PUT PATCH
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}'
Parametre
Tip
Açıklama
name
opsiyonel string
Alan adı.
color
opsiyonel integer
Renk kodu. Olası değerler şunlardır: 1, 2, 3, 4, 5, 6.
Silme

API uç noktası:

DELETE
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}'