Activate a pending order
A pending order may be created by different actions, under different conditions, and have limitations.
Use the Zuora application
If you have the service activation date, customer acceptance date, or both unfilled, you can perform the following steps to activate a pending order:
- Navigate to Customers > Orders.
- Search the order by performing an exact search for the pending order or filter all orders in the pending status.
- Click the order number of the pending order to open the order details page.
- Click the clock icon
at the top right.
A window opens with empty SERVICE ACTIVATION date and CUSTOMER ACCEPTANCE date fields.
-
Click the Calendar icon
next to the preceding fields, and specify the relevant dates.
-
Click Complete to activate the pending order.
Use the REST API
If you have the service activation date, customer acceptance date, or both unfilled, or if you have the Specific Trigger Date unfilled for the charge with the Triggering Condition of the charge set as Upon a Specific Date, you can perform the following steps to activate a pending order:
Use the "Update order action trigger dates" operation to activate the pending order:
Request | PUT/v1/orders/{orderNumber}/triggerDates |
---|---|
Request Body |
{ "subscriptions": [ { "orderActions": [ { "charges": [ { "chargeNumber": "C-0000001", "specificTriggerDate": "2016-09-01" } ], "sequence": 0, "triggerDates": [ { "name": "CustomerAcceptance", "triggerDate": "2016-09-01" } ] } ], "subscriptionNumber": "A-S00000009" } ] } |