Commands ======== POST /command/cart-checkout ---------------------------- With this method you can finish your order. Request schema: .. code-block:: json {"shippingMethod":{"id":"SHIPPING_METHOD_ID_HERE"},"customerNotes":"NOTES_FOR_THIS_ORDER"} Curl example: .. code-block:: bash curl -XPOST https://api.url/command/cart-checkout -H 'Authorization: Bearer ACCESS_TOKEN' -d '{"shippingMethod":{"id":"courier_cod"},"customerNotes":"hello"}' POST /command/cancel-item ------------------------- With this method you are able to ask us to cancel item from confirmed order. If possible, items (deals) from orders are removed manually, so you should give us some time to handle such request. What this method actually does? It sends message in our company's internal chat system to group of employees who handle order operations. So please don't use this method for the same item multiple times. Request schema: .. code-block:: json {"uuid":"CART-ITEM-UUID"} Curl example: .. code-block:: bash curl -XPOST https://api.url/command/cancel-item -H 'Authorization: Bearer ACCESS_TOKEN' -d '{"uuid":"410069a7-c69c-4c2f-a5f3-002bc394f522"}'