> 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 # Method name: createPolicy(policy: Policy) # Method package: wixEventsV2 # Method menu location: wixEventsV2 --> policies --> createPolicy # Method Link: https://dev.wix.com/docs/velo/apis/wix-events-v2/policies/create-policy.md # Method Description: Creates a policy. The `createPolicy()` function returns a Promise that resolves to the newly-created policy. You can create up to 3 policies per event. If you try to create more than 3, you'll get the "Maximum number of policies for the event has been reached" error. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Create Policy (dashboard page code) ```javascript import { policies } from 'wix-events.v2'; //define policy object const policy = { body: 'Tickets to this Event are issued on behalf of the Organiser and are subject to the following terms and conditions.', eventId: '9d720f99-1b5a-4141-9877-d32985391e18', name: 'Terms and Conditions Event 1' }; //create policy async function myCreatePolicyFunction(){ try { const result = await policies.createPolicy(policy); return result; } catch (error) { console.error(error); // Handle the error } }; /* Returns a promise that resolves to the created policy. { "_id": "0907cf78-5177-4482-a627-b17ef06badec", "revision": "1", "_createdDate": "2023-03-07T12:48:25.917Z", "_updatedDate": "2023-03-07T12:48:25.917Z", "name": "Terms and Conditions Event 1", "body": "Tickets to this Event are issued on behalf of the Organiser and are subject to the following terms and conditions.", "eventId": "9d720f99-1b5a-4141-9877-d32985391e18" } */ ``` ## Create Policy (export from backend code) ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { policies } from 'wix-events.v2'; import { elevate } from 'wix-auth'; //define policy object const policy = { body: 'Tickets to this Event are issued on behalf of the Organiser and are subject to the following terms and conditions.', eventId: '9d720f99-1b5a-4141-9877-d32985391e18', name: 'Terms and Conditions Event 1' }; //create policy export const elevatedCreatePolicyFunction = webMethod(Permissions.Anyone, async () => { const elevatedCreatePolicy = elevate(policies.createPolicy); try { const result = await elevatedCreatePolicy(policy); return result; } catch (error) { console.error(error); // Handle the error } }); /* Promise resolves to: * { * "_id": "0907cf78-5177-4482-a627-b17ef06badec", * "revision": "1", * "_createdDate": "2023-03-07T12:48:25.917Z", * "_updatedDate": "2023-03-07T12:48:25.917Z", * "name": "Terms and Conditions Event 1", * "body": "Tickets to this Event are issued on behalf of the Organiser and are subject to the following terms and conditions.", * "eventId": "9d720f99-1b5a-4141-9877-d32985391e18" * } */ ``` ---