> 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 # PostponeEndDate # Package: pricingPlans # Namespace: OrderManagementService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/pricing-plans/orders/postpone-end-date.md ## Permission Scopes: Manage Orders: SCOPE.DC-PAIDPLANS.MANAGE-ORDERS ## Introduction 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`. --- ## REST API ### Schema ``` Method: postponeEndDate 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`. URL: https://www.wixapis.com/pricing-plans/v2/orders/{id} Method: PATCH # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: endDate Method parameters: param name: endDate | type: endDate | description: New end date and time. Must be later than the current end date and time. | required: true Return type: PostponeEndDateResponse EMPTY-OBJECT {} ``` ### Examples ### PostponeEndDate ```curl ~~~cURL curl -X PATCH \ 'https://www.wixapis.com/pricing-plans/v2/orders/d5ce1234-c0a9-476c-abd3-c781bd589a78' \ -H 'Authorization: ' \ --data-raw '{"endDate":"2022-10-26T13:45:53.129Z"}' ~~~ ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.pricingPlans.OrderManagementService.postponeEndDate(_id, endDate) 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`. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: _id, endDate Method parameters: param name: _id | type: string | description: Order GUID. | required: true param name: endDate | type: string | description: New end date and time. Must be later than the current end date and time. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### postponeEndDate ```javascript import { orders } from '@wix/pricing-plans'; async function postponeEndDate(_id,endDate) { const response = await orders.postponeEndDate(_id,endDate); }; ``` ### postponeEndDate (with elevated permissions) ```javascript import { orders } from '@wix/pricing-plans'; import { auth } from '@wix/essentials'; async function myPostponeEndDateMethod(_id,endDate) { const elevatedPostponeEndDate = auth.elevate(orders.postponeEndDate); const response = await elevatedPostponeEndDate(_id,endDate); } ``` ### postponeEndDate (self-hosted) Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md). ```javascript import { createClient } from '@wix/sdk'; import { orders } from '@wix/pricing-plans'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { orders }, // Include the auth strategy and host as relevant }); async function postponeEndDate(_id,endDate) { const response = await myWixClient.orders.postponeEndDate(_id,endDate); }; ``` ---