A landed cost item is a non-inventory item that represents a landed cost expense, such as freight, insurance, customs duties, or handling fees.
This object is valid when Inventory Control is configured to enable landed costs. For more information, see Landed costs overview in the Sage Intacct Help Center.
Create and maintain landed costs from the owning item object.
Returns a collection with a key, ID, and link for each item landed cost.
OK
Bad Request
{- "ia::result": [
- {
- "key": "25",
- "id": "25",
- "href": "/objects/inventory-control/item-landed-cost/25"
}, - {
- "key": "26",
- "id": "26",
- "href": "/objects/inventory-control/item-landed-cost/26"
}, - {
- "key": "27",
- "id": "27",
- "href": "/objects/inventory-control/item-landed-cost/27"
}
], - "ia::meta": {
- "totalCount": 3,
- "start": 1,
- "pageSize": 100,
- "next": null,
- "previous": null
}
}
Returns detailed information for a specified item landed cost.
key required | string System-assigned unique key for the item landed cost. Example: 99 |
OK
Bad Request
{- "ia::result": {
- "key": "87",
- "id": "87",
- "item": {
- "id": "Dell Touch Screen",
- "key": "234",
- "href": "/objects/inventory-control/item/234"
}, - "distributionMethod": "weight",
- "distributionMethodBaseUnit": "Ounce",
- "landedCostValue": "24.000000000",
- "active": true,
- "href": "/objects/inventory-control/item-landed-cost/87"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}