> 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: getOrdersSettings() # Method package: wixEcomBackend # Method menu location: wixEcomBackend --> ordersSettings --> getOrdersSettings # Method Link: https://dev.wix.com/docs/velo/apis/wix-ecom-backend/orders-settings/get-orders-settings.md # Method Description: Retrieves the sites' order settings. The `getOrdersSettings()` function returns a Promise that resolves to orders settings. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Get orders settings without elevated permissions ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { ordersSettings } from 'wix-ecom-backend'; export const myGetOrdersSettingsFunction = webMethod(Permissions.Anyone, async () => { try { const settings = await ordersSettings.getOrdersSettings(); console.log('Success! OrdersSettings:', settings); return settings; } catch (error) { console.error(error); // Handle the error } }); /* Promise resolves to: * { * "ordersSettings": { * "inventoryUpdateTrigger": "ON_ORDER_PLACED", * "createInvoice": false, * "createdDate": "2024-07-04T15:10:46.070Z", * "updatedDate": "2024-07-04T15:10:46.070Z" * } * } */ ``` ## Get orders settings with elevated permissions ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { ordersSettings } from 'wix-ecom-backend'; import { elevate } from 'wix-auth'; export const myGetOrdersSettingsFunction = webMethod(Permissions.Anyone, async () => { try { const elevatedGetOrdersSettings = elevate(ordersSettings.getOrdersSettings); const getOrdersSettings = await elevatedGetOrdersSettings(); console.log('Success! Orders settings:', getOrdersSettings); return getOrdersSettings; } catch (error) { console.error(error); // Handle the error } }); /* Promise resolves to: * { * "ordersSettings": { * "inventoryUpdateTrigger": "ON_ORDER_PLACED", * "createInvoice": false, * "createdDate": "2024-07-04T15:10:46.070Z", * "updatedDate": "2024-07-04T15:10:46.070Z" * } * } */ ``` ---