List all orders associated with a specific customer
cURL
curl --request GET \ --url https://api.auctionnow.io/api/alpha/merchant/customers/{customerId}/orders \ --header 'Authorization: <authorization>'
{ "data": [ { "orderId": "<string>", "status": "<string>", "totalAmountDollars": 123, "subTotalAmountDollars": 123, "createdAt": 123, "productTitle": "<string>", "productImage": "<string>", "auctionId": "<string>", "productId": "<string>", "trackingNumber": "<string>" } ], "timestamp": 123, "message": "<string>" }
Your Auction Now API key as a Bearer token
"Bearer ak_XXXXXXX"
The unique ID of the customer
A list of customer orders
Show child attributes