Punto finale API:
https://goo.vc/api/v1/spaces?it
Esempio di richiesta:
curl --location --request GET 'https://goo.vc/api/v1/spaces?it' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
search
search_by
name
per Nome. Il valore predefinito è: name
.sort_by
id
per Data di creazione, name
per Nome. Il valore predefinito è: id
.sort
desc
per In discesa, asc
per In salita. Il valore predefinito è: desc
.per_page
10
, 25
, 50
, 100
. Il valore predefinito è: 10
.Punto finale API:
https://goo.vc/api/v1/spaces/{id}?it
Esempio di richiesta:
curl --location --request GET 'https://goo.vc/api/v1/spaces/{id}?it' \ --header 'Accept: application/json' \ --header 'Authorization: Bearer {api_key}'
Punto finale API:
https://goo.vc/api/v1/spaces?it
Esempio di richiesta:
curl --location --request POST 'https://goo.vc/api/v1/spaces?it' \ --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
. Il valore predefinito è: 1
.Punto finale API:
https://goo.vc/api/v1/spaces/{id}?it
Esempio di richiesta:
curl --location --request PUT 'https://goo.vc/api/v1/spaces/{id}?it' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --header 'Authorization: Bearer {api_key}'
name
color
1
, 2
, 3
, 4
, 5
, 6
.Punto finale API:
https://goo.vc/api/v1/spaces/{id}?it
Esempio di richiesta:
curl --location --request DELETE 'https://goo.vc/api/v1/spaces/{id}?it' \ --header 'Authorization: Bearer {api_key}'