Get User Bookings
Overview
Request for User Bookings based on date.
This will return the user's bookings based date.
Details
Type
POST
Endpoint
{{url}}/api/User/GetBookings
Request
The request will have five valid parameters.
The Id
or EmailAddress
can be used; at least one is required.
The date
is optional and used to find the user's status for a future day; if not included the current date should be used.
Example
{
"Id": int,
"EmailAddress": "string (email address)",
"Date": "dd/MM/yyyy"
}
Response
The response will include the user's bookings.
Example
{
"Id": int,
"EmailAddress": "string (email address)",
"Date": "yyyy/MM/DD",
"Bookings": Array[
Object{
"Per": int,
"Id": int,
"AllDay": int,
"Subject": "string",
"Organizer": "string (name)",
"OrganizerEmail": "string (email address)",
"StartTime": "2023-11-24T12:22:57",
"EndTime": "2023-11-24T12:52:57",
"BookedBy": int (user id),
"ResId": int,
"RecurringOption": "",
"MeetingStatus": "string"
}
]
}
Use case
This API will be used for the schedule view to display current bookings for selected users.
, multiple selections available,
Related content
All Bookings
All Bookings
More like this
Add a New Booking
Add a New Booking
More like this
[v1.2] All Bookings
[v1.2] All Bookings
More like this
View, Edit and Delete Existing Bookings
View, Edit and Delete Existing Bookings
More like this
Get User's Work Places
Get User's Work Places
More like this
Get User Settings
Get User Settings
Read with this