To update an order already in the system you'll need to use the /api/Order/{id} - POST Method
https://api.mintsoft.co.uk/swagger/ui/index#!/Order/Order_UpdateOrder
Please see the API - Creating Orders Endpoint for specifics on specifying Warehouse, Country, Currency etc.
When updating an Order, the following fields can be updated:
- OrderNumber
- ExternalOrderReference
- Title
- FirstName
- LastName
- CompanyName
- Address1
- Address2
- Address3
- Town
- County
- PostCode
- Phone
- Movile
- DeliveryNotes
- GiftMessages
- VATNumber
- OrderValue
- Country
- Currency
- RequiredDeliveryDate
- RequiredDespatchDate
- CourierService
Example Request: (Will update the First Name & Last Name on an order)
{
"FirstName": "NEW FIRST NAME",
"LastName": "NEW LAST NAME",
}
Comments
0 comments
Article is closed for comments.