Spaces

Notes
Expert level
The API key should be sent as a Bearer token in the Authorization header of the request. Erhalten Sie Ihren API-Schlüssel.
Liste

API endpoint:

GET
https://4or.de/api/v1/spaces

Beispiel anfordern:

curl --location --request GET 'https://4or.de/api/v1/spaces' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
Parameter
Type
Beschreibung
search
optional string
Die Suchanfrage.
search_by
optional string
Suche nach. Mögliche Werte sind: name for Name. Standardwert: name
sort_by
optional string
Sortieren nach. Mögliche Werte sind: id for Erstellungsdatum, name for Name. Standardwert: id
sort
optional string
Sortieren. Mögliche Werte sind: desc for Absteigend, asc for Aufsteigend. Standardwert: desc
per_page
optional integer
Ergebnisse pro Seite. Mögliche Werte sind: 10, 25, 50, 100. Standardwert: 100
anzeigen

API endpoint:

GET
https://4or.de/api/v1/spaces/{id}

Beispiel anfordern:

curl --location --request GET 'https://4or.de/api/v1/spaces/{id}' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
Speichern

API endpoint:

POST
https://4or.de/api/v1/spaces

Beispiel anfordern:

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

API endpoint:

PUT PATCH
https://4or.de/api/v1/spaces/{id}

Beispiel anfordern:

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

API endpoint:

DELETE
https://4or.de/api/v1/spaces/{id}

Beispiel anfordern:

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