Aggregation Scheme Commodity Mappings - Implan-Group/api GitHub Wiki

Aggregation Scheme - Commodity Mappings

For custom Aggregation Schemes, returns the mappings of customized commodities to their base IMPLAN commodity code.


🖽 The Commodity Mapping Object

Property Type Details
displayCode str A display code for the custom Industry.
displayDescription str A description for the custom Industry.
codeFrom int
codeTo int
commodityIdFrom int
commodityIdTo int

GET /api/v1/aggregationSchemes/{aggregationSchemeId}/commodity-mapping

Parameter Spec Type Details
aggregationSchemeId route int The Aggregation Scheme Id the industry maps are for.

🧾Example

📤 Request

GET /api/v1/aggregationSchemes/2127/commodity-mapping

📥 Response

[
    {
        "displayCode": "3002",
        "displayDescription": "ones",
        "codeFrom": 3001,
        "codeTo": 3001,
        "commodityIdFrom": 1692,
        "commodityIdTo": 1692
    },
]
⚠️ **GitHub.com Fallback** ⚠️