> 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: updatePaymentStatus(identifiers: UpdatePaymentStatusIdentifiers, options: UpdatePaymentStatusOptions) # Method package: wixEcomBackend # Method menu location: wixEcomBackend --> orderTransactions --> updatePaymentStatus # Method Link: https://dev.wix.com/docs/velo/apis/wix-ecom-backend/order-transactions/update-payment-status.md # Method Description: Updates the status of an order's payment. The `updatePaymentStatus()` function returns a Promise that resolves when the payment status is updated. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## updatePaymentStatus example for dashboard page code ```javascript import { orderTransactions } from 'wix-ecom-backend'; async function updatePaymentStatus(identifiers, options) { try { const result = await orderTransactions.updatePaymentStatus(identifiers, options); return result; } catch (error) { console.error(error); // Handle the error } } ``` ## updatePaymentStatus example for exporting from backend code ```javascript import { orderTransactions } from 'wix-ecom-backend'; import { webMethod, Permissions } from 'wix-web-module'; import { elevate } from 'wix-auth'; const elevatedUpdatePaymentStatus = elevate(orderTransactions.updatePaymentStatus); export const updatePaymentStatus = webMethod( Permissions.Anyone, async (identifiers, options) => { try { const result = await elevatedUpdatePaymentStatus(identifiers, options); return result; } catch (error) { console.error(error); // Handle the error } } ); ``` ---