API endpoint:
https://jetzt.work/api/v1/spaces
Beispiel für eine Anfrage:
curl --location --request GET 'https://jetzt.work/api/v1/spaces' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
search
search_by
name
für Name. Standartmäßig: name
.sort_by
id
für Erstelldatum, name
für Name. Standartmäßig: id
.sort
desc
für Absteigend, asc
für Aufsteigend. Standartmäßig: desc
.per_page
10
, 25
, 50
, 100
. Standartmäßig: 10
.API endpoint:
https://jetzt.work/api/v1/spaces/{id}
Beispiel für eine Anfrage:
curl --location --request GET 'https://jetzt.work/api/v1/spaces/{id}' \ --header 'Accept: application/json' \ --header 'Authorization: Bearer {api_key}'
API endpoint:
https://jetzt.work/api/v1/spaces
Beispiel für eine Anfrage:
curl --location --request POST 'https://jetzt.work/api/v1/spaces' \ --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
. Standartmäßig: 1
.API endpoint:
https://jetzt.work/api/v1/spaces/{id}
Beispiel für eine Anfrage:
curl --location --request PUT 'https://jetzt.work/api/v1/spaces/{id}' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --header 'Authorization: Bearer {api_key}'
name
color
1
, 2
, 3
, 4
, 5
, 6
.API endpoint:
https://jetzt.work/api/v1/spaces/{id}
Beispiel für eine Anfrage:
curl --location --request DELETE 'https://jetzt.work/api/v1/spaces/{id}' \ --header 'Authorization: Bearer {api_key}'