Listing all events of a user
This endpoint is deprecated. Please do not use it for new projects. The documentation remains here for legacy API consumers.
Listing all events of a user
The common use-case of obtaining a list of a users events is associated with the /events endpoint directly.
By sending the following GET-request, one can obtain the requested list containing all applications of a user:
1 |
curl -i -H "Authorization: Bearer TOKEN" -H "Content-Type: application/json" -X GET "https://api.softgarden.io/api/rest/v2/frontend/events" |
with TOKEN being the user access token of the user in question. It is used to determine the validity of this request.
Path parameters
– none –
Query parameters
– none –
Response values
Upon | Returned value | Description |
---|---|---|
success | JSON-encoded List<EventData> | Please look at the according doc-page. |
failure | 500 – INTERNAL SERVER ERROR | When an error appears while processing your request. |
authorization error | 401 / 403 | See here for details. |
Example return value
1 2 3 4 5 6 7 8 9 10 |
[ { "id": "fb904515cd874efba3c7eeb4e0d841f1", "name": "Bewerbungsgespräch", "freeSeats": 10, "totalSeats": 10, "status": "OPEN" }, (...) ] |