Product prices in order details
Configured order API call
Request example:
GET /api/v3/STOREID/orders/ORDERID?responseFields=subtotal,subtotalWithoutTax,items(id,price,priceWithoutTax,productPrice,isCustomerSetPrice,selectedPrice(value)) HTTP/1.1
Host: app.ecwid.com
Authorization: Bearer secret_tokenResponse examples:
{
"subtotal": 10,
"subtotalWithoutTax": 9.09,
"items": [
{
"id": 1828115520,
"price": 10,
"priceWithoutTax": 9.09,
"productPrice": 10
}
]
}{
"subtotal": 200,
"subtotalWithoutTax": 200,
"items": [
{
"id": 1917576131,
"price": 100,
"priceWithoutTax": 100,
"productPrice": 25,
"isCustomerSetPrice": true,
"selectedPrice": {
"value": 100
}
}
]
}Last updated
Was this helpful?
