Important
New shipment package stream endpoint is available

For large-scale scanning and synchronization flows, please prefer getShipmentPackagesStream.

HomeGuidesAPI ReferenceChangelogSupport Request
Guides

16. International Orders — SGR Fee

International Orders — SGR Fee

What is SGR Fee? SGR (Selective Recycling Fee) is an environmental/recycling surcharge applied to Romania non-micro international orders. Unlike discounts, it is a fee added on top of the net price — it increases the amount payable.

Extended net price formula for these orders: lineUnitPrice = lineGrossAmount − lineSellerDiscount − lineTyDiscount + lineSgrFee

Romania Order with SGR Fee

A non-micro Romania international order where totalSgrFee and lineSgrFee are present. Note that lineUnitPrice is higher than lineGrossAmount − discounts because the SGR fee is added on top.

{
  "packageGrossAmount": 300.00,
  "packageSellerDiscount": 30.00,
  "packageTyDiscount": 0.00,
  "packageTotalDiscount": 30.00,
  "packageTotalPrice": 286.00,
  "totalSgrFee": 16.00,
  "discountDisplays": [
    {
      "displayName": "10% Seller Discount",
      "discountAmount": 30.00
    }
  ],
  "micro": false,
  "lines": [
    {
      "quantity": 2,
      "lineGrossAmount": 150.00,
      "lineSellerDiscount": 15.00,
      "lineTyDiscount": 0.00,
      "lineTotalDiscount": 15.00,
      "lineSgrFee": 8.00,
      "lineUnitPrice": 143.00,
      "discountDetails": [
        {
          "lineItemPrice": 135.00,
          "lineItemSellerDiscount": 15.00,
          "lineItemTyDiscount": 0.00
        },
        {
          "lineItemPrice": 135.00,
          "lineItemSellerDiscount": 15.00,
          "lineItemTyDiscount": 0.00
        }
      ]
    }
  ]
}

Note: lineSgrFee is the total SGR fee per item in that line. totalSgrFee at the package level reflects the total SGR fee across all lines. discountDetails does not include SGR fee — it only covers discount fields. totalSgrFee and lineSgrFee are omitted entirely when not applicable (domestic and micro international orders).