This guide is intended for customers with custom-built third-party API integrations. It provides an additional method for importing Amazon orders, rather than the standard approach. If you choose to import Amazon orders into Mintsoft using the API and need to request Amazon Logistics labels for Prime orders, you’ll need to provide some additional information. This allows us to pass the necessary details to Amazon through the API.
You’ll need to set up your Amazon account within Mintsoft, but make sure it's set to Inactive to prevent orders from being automatically imported.
When injecting the order JSON:
Include an OrderNameValue to indicate the order originated from Amazon.
For each order item, provide the AmazonOrderId.
Ensure a CourierService field is included and mapped correctly so we can identify the order as a Prime shipment.
OrderNameValues
"OrderNameValues": [ { "Name": "OriginalSource", "Value": "AMAZON" } ]
OrderItem
{ "OrderItems": [ { "SKU": "string", "ProductId": 0, "Quantity": 0, "Details": "string", "UnitPrice": 0, "UnitPriceVat": 0, "OrderItemNameValues": [ { "Name": "Amazon-OrderItemId", "Value": "59898988485779" } ],
CourierService
"CourierService": "PRIME",