Cancel orders
Describes how to manage order cancellations when you use the recommendations service as part of the Optimizely Recommendations product suite.
When a visitor creates an online order and then cancels it, you need to inform Optimizely of the cancellation.
Note
Test your API calls using the user acceptance testing (UAT) server prior to adding code to your production server or live website. Also, before implementing, contact Optimizely to enable order updates and cancellations in Optimizely Recommendations.
Cancel online orders
To cancel an online order, submit a POST request with an active session, a cuid, and an orderNo. These do not need to match the session and CUID that were used when the order was placed, but these are used if the order is cancelled within the same session.
POST https://<clientname>.peerius.episerver.net/tracker/api/<apiversion>/<sitename>/order/cancel.pagex
Request Parameters:
session
– current_sessionidcuid
– current_cuidorderNo
– orderref123
You can pass parameters in the API URL after a question mark (/cancel.pagex?session=...&cuid=...&orderNo=...
) or in the request body of a POST request that uses 'application/x-www-form-urlencoded'
content type.
For example: https://my-site.peerius.episerver.net/tracker/api/v1_4/mysite/order/cancel.pagex?session=123456789012|a1b2c3d4e5A6B7C8D9E0f1g2h3i4j5F1G2H3I4J5k1l&cuid=09876543210|Z0Y9X8W7V6z5y4x3w2v1U0T9S8R7Q6u5t4s3r2q1P0O&orderNo=ABC-DE-123456
Cancel offline orders
When a visitor creates an offline order and then cancels it, you need to inform Optimizely of the cancellation.
Submit a DELETE request with the order number to the offline orders endpoint to cancel offline orders. The siteName, channel and siteToken values should be the same as those used to create the order. For confirmation of these values, contact Optimizely.
DELETE https://<clientname>.peerius.episerver.net/smart-api/orders/offline/<order_number>
Request Headers:
site
– sitenamesiteToken
– token123Content-Type
– application/jsonchannel
– store
For example: https://my-site.peerius.episerver
Updated 6 months ago