> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # GetEventsView # Package: calendar # Namespace: EventViewsService # Method link: https://dev.wix.com/docs/api-reference/business-management/calendar/event-views-v3/get-events-view.md ## Permission Scopes: Read Calendar - Including PI: SCOPE.DC-CALENDAR.READ-PI ## Introduction Retrieves the current event view. Doesn’t return details about events within the view. You can use [Query Events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/query-events.md), providing `eventsView.endDate` as `toLocalDate` to retrieve the events. --- ## REST API ### Schema ``` Method: getEventsView Description: Retrieves the current event view. Doesn’t return details about events within the view. You can use [Query Events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/query-events.md), providing `eventsView.endDate` as `toLocalDate` to retrieve the events. URL: https://www.wixapis.com/calendar/v3/events/view Method: GET Return type: GetEventsViewResponse - name: eventsView | type: EventsView | description: Retrieved event view. - name: endDate | type: string | description: End date of the event view in `YYYY-MM-DDThh:mm:ss.sssZ` format. - name: futureDurationInDays | type: integer | description: Number of days from now until the event view ends. ``` ### Examples ### Get Events View Retrieves the view’s end date for the calendar view. ```curl curl -X GET \ 'https://www.wixapis.com/calendar/v3/events/view' \ -H 'Content-Type: application/json' \ -H 'Authorization: ' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.calendar.EventViewsService.getEventsView() Description: Retrieves the current event view. Doesn’t return details about events within the view. You can use [Query Events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/query-events.md), providing `eventsView.endDate` as `toLocalDate` to retrieve the events. Return type: PROMISE - name: eventsView | type: EventsView | description: Retrieved event view. - name: endDate | type: Date | description: End date of the event view in `YYYY-MM-DDThh:mm:ss.sssZ` format. - name: futureDurationInDays | type: integer | description: Number of days from now until the event view ends. ``` ### Examples ### getEventsView ```javascript import { eventViews } from '@wix/calendar'; async function getEventsView() { const response = await eventViews.getEventsView(); }; ``` ### getEventsView (with elevated permissions) ```javascript import { eventViews } from '@wix/calendar'; import { auth } from '@wix/essentials'; async function myGetEventsViewMethod() { const elevatedGetEventsView = auth.elevate(eventViews.getEventsView); const response = await elevatedGetEventsView(); } ``` ### getEventsView (self-hosted) Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md). ```javascript import { createClient } from '@wix/sdk'; import { eventViews } from '@wix/calendar'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { eventViews }, // Include the auth strategy and host as relevant }); async function getEventsView() { const response = await myWixClient.eventViews.getEventsView(); }; ``` ---