> 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: updateOrdersSettings(ordersSettings: OrdersSettings, options: UpdateOrdersSettingsOptions) # Method package: wixEcomBackend # Method menu location: wixEcomBackend --> ordersSettings --> updateOrdersSettings # Method Link: https://dev.wix.com/docs/velo/apis/wix-ecom-backend/orders-settings/update-orders-settings.md # Method Description: Updates the sites' orders settings. The `updateOrdersSettings()` function returns a Promise that resolves to the newly updated orders settings. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Update orders settings (dashboard page code) ```javascript import { ordersSettings } from 'wix-ecom-backend'; /* Sample update value: { "ordersSettingsInfo": { "createInvoice": true } } */ export async function myUpdateOrdersSettingsFunction(ordersSettingsInfo) { try { const settings = await ordersSettings.updateOrdersSettings(ordersSettingsInfo); console.log('Success! Updated orders settings:', settings); return settings; } catch (error) { console.error(error); // Handle the error } } /* Promise resolves to: * { * "ordersSettings": { * "inventoryUpdateTrigger": "ON_ORDER_PLACED", * "createInvoice": true, * "createdDate": "2024-07-04T15:10:46.070Z", * "updatedDate": "2024-07-04T15:10:46.070Z" * } * } */ ``` ## Update orders settings (export from backend code) ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { ordersSettings } from 'wix-ecom-backend'; import { elevate } from 'wix-auth'; /* Sample update value: { "ordersSettingsInfo": { "createInvoice": true } } */ export const myUpdateOrdersSettingsFunction = webMethod(Permissions.Admin, async (ordersSettingsInfo) => { try { const elevatedUpdateOrdersSettings = elevate(ordersSettings.updateOrdersSettings); const settings = await elevatedUpdateOrdersSettings(ordersSettingsInfo); console.log('Success! Updated orders settings:', settings); return settings; } catch (error) { console.error(error); // Handle the error } }); /* Promise resolves to: * { * "ordersSettings": { * "inventoryUpdateTrigger": "ON_ORDER_PLACED", * "createInvoice": true, * "createdDate": "2024-07-04T15:10:46.070Z", * "updatedDate": "2024-07-04T15:10:46.070Z" * } * } */ ``` ---