> 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 # CreateBookmark # Package: eventManagement # Namespace: BookmarkManagement # Method link: https://dev.wix.com/docs/api-reference/business-solutions/events/event-management/schedule-items/create-bookmark.md ## Permission Scopes: Manage Events: SCOPE.EVENTS.MANAGE-EVENTS ## Introduction Bookmarks a schedule item for a current member. --- ## REST API ### Schema ``` Method: createBookmark Description: Bookmarks a schedule item for a current member. URL: https://www.wixapis.com/events/v1/schedule/{itemId}/bookmark Method: POST # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: eventId Method parameters: param name: eventId | type: eventId | description: Event GUID to which the schedule item belongs. | required: true Return type: CreateBookmarkResponse EMPTY-OBJECT {} ``` ### Examples ### CreateBookmark ```curl ~~~cURL curl -X POST 'https://www.wixapis.com/events/v1/agenda/80a28db1-672b-45db-a62c-5315ee07ae22/bookmark' \ -H 'Content-Type: application/json' \ -H 'Authorization: ' ~~~ ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.eventManagement.BookmarkManagement.createBookmark(itemId, eventId) Description: Bookmarks a schedule item for a current member. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: eventId, itemId Method parameters: param name: eventId | type: string | description: Event GUID to which the schedule item belongs. | required: true param name: itemId | type: string | description: Schedule item GUID. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### createBookmark ```javascript import { scheduleBookmarks } from '@wix/events'; async function createBookmark(itemId,eventId) { const response = await scheduleBookmarks.createBookmark(itemId,eventId); }; ``` ### createBookmark (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 { scheduleBookmarks } from '@wix/events'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { scheduleBookmarks }, // Include the auth strategy and host as relevant }); async function createBookmark(itemId,eventId) { const response = await myWixClient.scheduleBookmarks.createBookmark(itemId,eventId); }; ``` ---