Order Details

Example payload

{
  "object": "order_details",
  "id": 123,
  "duty_paid": true,
  "duty_paid_value": {
    "merchant_money": { "amount": "11.00", "currency_code": "EUR" },
    "presentment_money": { "amount": "10.00", "currency_code": "USD" }
  },
  "shipping_cost": {
    "merchant_money": { "amount": "6.00", "currency_code": "EUR" },
    "presentment_money": { "amount": "5.00", "currency_code": "USD" }
  },
  "total_order_price_excl_tax": {
    "merchant_money": { "amount": "130.00", "currency_code": "EUR" },
    "presentment_money": { "amount": "120.00", "currency_code": "USD" }
  },
  "total_order_price_incl_tax": {
    "merchant_money": { "amount": "110.00", "currency_code": "EUR" },
    "presentment_money": { "amount": "100.00", "currency_code": "USD" }
  },
  "vat": {
    "merchant_money": { "amount": "22.00", "currency_code": "EUR" },
    "presentment_money": { "amount": "20.00", "currency_code": "USD" }
  }
}

Attributes

FIELD

DESCRIPTION

currency_code string (ISO 4217)

The currency in which the customer paid their order. Defaults to your account's currency.

total_order_price_excl_tax
MoneyBag

The total order cost (incl. tax) the customer paid (including discounts).

total_order_price_incl_tax
MoneyBag

The total order cost (excl. tax) the customer paid (including discounts).

vat
MoneyBag

The VAT the customer paid.

shipping_cost
MoneyBag

The shipping cost paid by the customer.

duty_paid_value
MoneyBag

The duties already paid by the customer.

duty_paid
boolean

Boolean representing if the customer already paid the duties or not.