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:
lineSgrFeeis the total SGR fee per item in that line.totalSgrFeeat the package level reflects the total SGR fee across all lines.discountDetailsdoes not include SGR fee — it only covers discount fields.totalSgrFeeandlineSgrFeeare omitted entirely when not applicable (domestic and micro international orders).
Updated 1 day ago