Orders
Get the shipping address for an order
GET http://localhost:59318/odata/v1/Orders(145)/ShippingAddressGet order items from an order including product data
GET http://localhost:59318/odata/v1/OrderItems?$filter=OrderId eq 145&$expand=ProductGet orders with the note "mystring"
GET http://localhost:59318/odata/v1/OrderNotes
?$filter=Note eq 'mystring'&$expand=OrderGet orders without the note "mystring"
GET http://localhost:59318/odata/v1/OrderNotes
?$filter=Note ne 'mystring'&$expand=OrderMark an order as paid
POST http://localhost:59318/odata/v1/Orders(145)/PaymentPaid
{ "paymentMethodName": "Payments.Sofortueberweisung" }Refund an order
Complete an order
Download an order as PDF
Add shipment to an order
Get shipment info
Last updated
Was this helpful?