Räume

Anmerkungen
Expertenebene
Der API-Schlüssel sollte als Bearer-Token im Authorization-Header der Anfrage gesendet werden. Erhalten Sie Ihren API-Schlüssel.
Liste

API-Endpunkt:

GET
https://goo.vc/api/v1/spaces?de

Beispiel anfordern:

curl --location --request GET 'https://goo.vc/api/v1/spaces?de' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
Parameter
Typ
Beschreibung
search
optional string
Die Suchanfrage.
search_by
optional string
Suche nach. Mögliche Werte sind: name für Name. Standardwert ist: name.
sort_by
optional string
Sortieren nach. Mögliche Werte sind: id für Datum der Erstellung, name für Name. Standardwert ist: id.
sort
optional string
Sortieren. Mögliche Werte sind: desc für Absteigend, asc für Aufsteigend. Standardwert ist: desc.
per_page
optional integer
Ergebnisse pro Seite. Mögliche Werte sind: 10, 25, 50, 100. Standardwert ist: 10.
anzeigen

API-Endpunkt:

GET
https://goo.vc/api/v1/spaces/{id}?de

Beispiel anfordern:

curl --location --request GET 'https://goo.vc/api/v1/spaces/{id}?de' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
Laden Sie

API-Endpunkt:

POST
https://goo.vc/api/v1/spaces?de

Beispiel anfordern:

curl --location --request POST 'https://goo.vc/api/v1/spaces?de' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}' \
--data-urlencode 'name={name}'
Parameter
Typ
Beschreibung
name
erforderlich string
Der Name des Raums.
color
optional integer
Der Farbcode. Mögliche Werte sind: 1, 2, 3, 4, 5, 6. Standardwert ist: 1.
Update

API-Endpunkt:

PUT PATCH
https://goo.vc/api/v1/spaces/{id}?de

Beispiel anfordern:

curl --location --request PUT 'https://goo.vc/api/v1/spaces/{id}?de' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}'
Parameter
Typ
Beschreibung
name
optional string
Der Name des Raums.
color
optional integer
Der Farbcode. Mögliche Werte sind: 1, 2, 3, 4, 5, 6.
Löschen

API-Endpunkt:

DELETE
https://goo.vc/api/v1/spaces/{id}?de

Beispiel anfordern:

curl --location --request DELETE 'https://goo.vc/api/v1/spaces/{id}?de' \
--header 'Authorization: Bearer {api_key}'