Edits an emission source
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, including the request body. |
Path Parameters
| Name | Description | Type | Required |
|---|---|---|---|
| emissionSourceId | The identifier for the emission source being edited | integer (int32) | Required |
Request Body
EmissionSourceMultiFactorEdit
| Property | Description | Type | |||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| address | AddressChildBase | ||||||||||||||||||||||||||||||||||
|
AddressChildBase properties
|
|||||||||||||||||||||||||||||||||||
| collectionId | The collection to which the emission source belongs Required Topmost (Collection) | integer (int32) | |||||||||||||||||||||||||||||||||
| commodityId | The emission source’s commodity Required | integer (int32) | |||||||||||||||||||||||||||||||||
| emissionSourceCode | The emission source code Required Must be between 0 and 32 characters | string | |||||||||||||||||||||||||||||||||
| emissionSourceInfo | The emission source info Required Must be between 0 and 64 characters | string | |||||||||||||||||||||||||||||||||
| isActive | Is the emission source active Required (defined) | boolean | |||||||||||||||||||||||||||||||||
| note | The emission source note Must be between 0 and 255 characters Required (defined) | string | |||||||||||||||||||||||||||||||||
| scopeCategoryEmissionFactorPairs | A list of Factor and Scope Category pairings to be attached to this Emission Source Required (defined) | GHGasFactorAndScopeCategoryPairCreate[] | |||||||||||||||||||||||||||||||||
|
GHGasFactorAndScopeCategoryPairCreate properties
|
|||||||||||||||||||||||||||||||||||
Example Request Body
{ "address": { "city": "string", "country": "string", "latitude": 1.0, "line1": "string", "line2": "string", "line3": "string", "longitude": 1.0, "postalCode": "string", "remitTo": "string", "state": "string"
}, "collectionId": 1, "commodityId": 1, "emissionSourceCode": "string", "emissionSourceInfo": "string", "isActive": false, "note": "string", "scopeCategoryEmissionFactorPairs": [
{ "factor": { "factorId": 1, "factorType": "string"
}, "isDefault": false, "scopeCategoryId": 1
}
]
}
Responses
200
OK
The request succeeded and the response body contains the requested data.
Response Body Parameters
EmissionSourceMultiFactorResponse
| Property | Description | Type | |||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| active | Indicates whether the emission source is active | boolean | |||||||||||||||||||||||||||||||||||||||||||||
| address | AddressChild | ||||||||||||||||||||||||||||||||||||||||||||||
|
AddressChild properties
|
|||||||||||||||||||||||||||||||||||||||||||||||
| collection | CollectionChild | ||||||||||||||||||||||||||||||||||||||||||||||
|
CollectionChild properties
|
|||||||||||||||||||||||||||||||||||||||||||||||
| commodity | CommodityChild | ||||||||||||||||||||||||||||||||||||||||||||||
|
CommodityChild properties
|
|||||||||||||||||||||||||||||||||||||||||||||||
| createdBy | UserChild | ||||||||||||||||||||||||||||||||||||||||||||||
|
UserChild properties
|
|||||||||||||||||||||||||||||||||||||||||||||||
| createdDate | The date and time the emission source was created | string (date-time) | |||||||||||||||||||||||||||||||||||||||||||||
| emissionSourceCode | The emission source code | string | |||||||||||||||||||||||||||||||||||||||||||||
| emissionSourceId | The emission source identifier | integer (int32) | |||||||||||||||||||||||||||||||||||||||||||||
| emissionSourceInfo | The emission source info | string | |||||||||||||||||||||||||||||||||||||||||||||
| meter | MeterLink | ||||||||||||||||||||||||||||||||||||||||||||||
|
MeterLink properties
|
|||||||||||||||||||||||||||||||||||||||||||||||
| modifiedBy | UserChild | ||||||||||||||||||||||||||||||||||||||||||||||
|
UserChild properties
|
|||||||||||||||||||||||||||||||||||||||||||||||
| modifiedDate | The date and time of the most recent modification of the emission source | string (date-time) | |||||||||||||||||||||||||||||||||||||||||||||
| note | The emission source description | string | |||||||||||||||||||||||||||||||||||||||||||||
| scopeCategoryEmissionFactorPairs | The pairs of Scope Categories and Emission Factors assigned to this Emission Source | GHGasFactorAndScopeCategoryPair[] | |||||||||||||||||||||||||||||||||||||||||||||
|
GHGasFactorAndScopeCategoryPair properties
|
|||||||||||||||||||||||||||||||||||||||||||||||
Example Response
{ "active": false, "address": { "addressTypeId": 1, "city": "string", "country": "string", "latitude": 1.0, "line1": "string", "line2": "string", "line3": "string", "longitude": 1.0, "postalCode": "string", "remitTo": "string", "state": "string"
}, "collection": { "collectionCode": "string", "collectionIcon": { "code": "string", "color": "string"
}, "collectionId": 1, "collectionInfo": "string"
}, "commodity": { "commodityCode": "string", "commodityIcon": { "code": "string", "color": "string"
}, "commodityId": 1, "commodityInfo": "string"
}, "createdBy": { "fullName": "string", "userCode": "string", "userId": 1
}, "createdDate": "2026-03-30", "emissionSourceCode": "string", "emissionSourceId": 1, "emissionSourceInfo": "string", "meter": { "meterId": 1
}, "modifiedBy": { "fullName": "string", "userCode": "string", "userId": 1
}, "modifiedDate": "2026-03-30", "note": "string", "scopeCategoryEmissionFactorPairs": [
{ "factor": { "factorCode": "string", "factorId": 1, "factorInfo": "string"
}, "isDefaultFactor": false, "scopeCategory": { "scopeCategoryDescription": "string", "scopeCategoryId": 1, "scopeCategoryInfo": "string", "scopeId": 1
}
}
]
}