cURL
curl --request GET \ --url http://localhost:4000/v1/userAvailabilities \ --header 'Authorization: Bearer <token>'
200
Example
{ "data": [ { "id": 123, "userId": 123, "name": "<string>", "timeZone": "<string>", "isDefault": true, "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z", "deletedAt": "<unknown>", "userAvailabilityDays": [ { "id": 123, "name": "<string>", "active": true, "timings": [ { "startTime": "<string>", "endTime": "<string>" } ] } ], "eventId": [ 123 ] } ] }
List user availabilities or get one by id
API key required in Authorization header. Format: iclosed-<token>
iclosed-<token>
List of user availabilities (or single when id is provided)
Show child attributes