> 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: postponeEndDate(_id: string, endDate: Date) # Method package: wixPricingPlansV2 # Method menu location: wixPricingPlansV2 --> orders --> postponeEndDate # Method Link: https://dev.wix.com/docs/velo/apis/wix-pricing-plans-v2/orders/postpone-end-date.md # Method Description: Extends the duration of a pricing plan order by postponing the order's `endDate`. Postponing the end date of an order does not impact payments. New `endDate` must be later than the order's current `endDate`. Can't postpone orders that are unlimited. Can't postpone an order with `status`: `PAUSED`. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Postpone an order's end date (dashboard page code) ```javascript import { orders } from 'wix-pricing-plans-backend'; import { elevate } from 'wix-auth'; /* Sample _id value: '82d99338-5653-459a-a751-b57483f7cfb5' * * Sample endDate value: new Date('June 30, 2026 04:00:00') */ const elevatedPostponeEndDate = elevate(orders.postponeEndDate); export async function myPostponeEndDateFunction(_id, endDate) { try { await elevatedPostponeEndDate(_id, endDate); return; } catch (error) { console.error(error); // Handle the error } } /* Promise that resolves to void */ ``` ## Postpone an order's end date (export from backend code) ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { orders } from 'wix-pricing-plans-backend'; import { elevate } from 'wix-auth'; /* * Sample _id value: '82d99338-5653-459a-a751-b57483f7cfb5' * * Sample endDate value: new Date('June 30, 2026 04:00:00') */ const elevatedPostponeEndDate = elevate(orders.postponeEndDate); export const myPostponeEndDateFunction = webMethod(Permissions.Anyone, async (_id, endDate) => { try { await elevatedPostponeEndDate(_id, endDate); return; } catch (error) { console.error(error); // Handle the error } }); /* Promise that resolves to void */ ``` ---