orders API Request endpoints

Route Name Description Endpoint Request method
routes Get list of available API routes /api/v1/orders/routes GET
createOrder Create new order /api/v1/orders/ POST
getOrders Get list of orders /api/v1/orders/ GET
getOrderItems Get items in order with given id /api/v1/orders/items GET
getOrderDetails Get details of order with given id /api/v1/orders/:orderId GET
cancelOrder Cancel order with given id /api/v1/orders/:orderId/cancel PUT
fulfillOrder Mark order with given id as fulfilled /api/v1/orders/:orderId/cancel PUT
paymentNotificationAsync Asynchronous notification path for order payment status /api/v1/orders/payments/async-notification POST