Skip to content

Supplier Net Allocation

GET /api/supplier-net-allocation
GET /api/supplier-net-allocation-table

Required privilege: Supplier Allocation / View

Returns computed net allocation data showing how demand is distributed across suppliers, factoring in allocation percentages and current order volumes.


GET - Net Allocation Summary

GET /api/supplier-net-allocation

Returns a summary of net allocated quantities per item per supplier.

{
  "data": {
    "rows": [
      {
        "Item Number": "ITEM-A",
        "Supplier Number": "SUP-007",
        "Supplier Name": "Acme Components Ltd.",
        "Allocation Percentage": 70,
        "Net Allocated Quantity": 350,
        "Open PO Quantity": 200,
        "Variance": -150
      }
    ]
  }
}
Field Type Description
Allocation Percentage number Configured allocation share
Net Allocated Quantity number Quantity that should be sourced from this supplier
Open PO Quantity number Quantity currently on open POs with this supplier
Variance number Gap between target and actual (Open PO - Net Allocated)

GET - Net Allocation Table

GET /api/supplier-net-allocation-table

Returns a cross-tabulated view (items × suppliers) for easier comparison in tabular format.


Code Examples

curl -b cookies.txt "https://acme.knosc.com/api/supplier-net-allocation"
curl -b cookies.txt "https://acme.knosc.com/api/supplier-net-allocation-table"