Get the version history of a specific GHG factor
Request Headers
| Header | Value | Required | Description |
|---|---|---|---|
| ECI-ApiKey | string | Yes | Your API key. See Authentication. |
| Content-Type | application/json | Yes | All requests must specify JSON content type. |
Path Parameters
| Name | Description | Type | Required |
|---|---|---|---|
| factorId | The GHG factor to retrieve history for | integer (int32) | Required |
Responses
200
OK
The request succeeded and the response body contains the requested data.
Response Body Parameters
Array of:
GHGFactorVersionHistoryResponseV202210
| Property | Description | Type | ||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| commodity | CommodityChild | |||||||||||||||||||||||||||||||
|
CommodityChild properties
|
||||||||||||||||||||||||||||||||
| commodityUnit | UnitChild | |||||||||||||||||||||||||||||||
|
UnitChild properties
|
||||||||||||||||||||||||||||||||
| factorCO2EUnit | UnitChild | |||||||||||||||||||||||||||||||
|
UnitChild properties
|
||||||||||||||||||||||||||||||||
| factorCategory | GHGFactorCategoryV202210 | |||||||||||||||||||||||||||||||
|
GHGFactorCategoryV202210 properties
|
||||||||||||||||||||||||||||||||
| factorDescription | Description of the factor | string | ||||||||||||||||||||||||||||||
| factorId | Identifier for the factor | string | ||||||||||||||||||||||||||||||
| factorInfo | Name of the factor | string | ||||||||||||||||||||||||||||||
| factorUnit | UnitChild | |||||||||||||||||||||||||||||||
|
UnitChild properties
|
||||||||||||||||||||||||||||||||
| versions | List of versions | GHGVersionV202210[] | ||||||||||||||||||||||||||||||
|
GHGVersionV202210 properties
|
||||||||||||||||||||||||||||||||
Example Response
[
{ "commodity": { "commodityCode": "string", "commodityIcon": {}, "commodityId": 1, "commodityInfo": "string"
}, "commodityUnit": { "unitCode": "string", "unitId": 1, "unitInfo": "string"
}, "factorCO2EUnit": { "unitCode": "string", "unitId": 1, "unitInfo": "string"
}, "factorCategory": { "factorCategoryId": 1, "factorCategoryInfo": "string"
}, "factorDescription": "string", "factorId": "string", "factorInfo": "string", "factorUnit": { "unitCode": "string", "unitId": 1, "unitInfo": "string"
}, "versions": [
{ "effectiveDate": "2026-03-30", "gases": [], "source": "string"
}
]
}
]