Calendar: GetUserEvents

Return user events by user Id in a time range

Request - GET https://api-uat.vtopenview.com/Calendar/{userId}?startDate={startDate}&endDate={endDate}

You will need to provide a user id in the url, and startDate and endDate as query params.
You will need to include your access token upon making a request. For more information, see the authentication and authorization page.

Example request with authorization:

curl -- GET Base URI: https://api-uat.vtopenview.com/Calendar/{userId}?startDate={startDate}&endDate={endDate}
--header "Authorization: Bearer MTQ0NjJkZmQ5OTM2NDE1ghNNBiuyUYUN"

Query Parameters
startDate
Datetime
The start date

endDate
Datetime
The end date

Response

If successful, this method returns a response body with the following structure:

Example response:

HTTPS 200 OK
Content-Type: application/json
[
{
"UserId": long,
"Title": "string",
"StartDate": "date",
"EndDate": "date",
"EventType": "string",
"Lettings": boolean,
"Sales": boolean,
"Private": boolean,
"Confirmed": boolean,
}
]