Item landed costs

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.

List item landed costs

get/objects/inventory-control/item-landed-cost

Returns a collection with a key, ID, and link for each item landed cost.

SecurityOAuth2
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "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
    }
}

Get an item landed cost

get/objects/inventory-control/item-landed-cost/{key}

Returns detailed information for a specified item landed cost.

SecurityOAuth2
Request
path Parameters
key
required
string

System-assigned unique key for the item landed cost.

Example: 99
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "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
    }
}