Edit all values for a benchmark factor on a place
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 |
|---|---|---|---|
| benchmarkIndicator | Indicator for the benchmark | integer (int32) | Required |
| placeId | integer (int32) | Required |
Request Body
Array of:
BenchmarkValueRequest
| Property | Description | Type |
|---|---|---|
| effectiveDate | The effective date for the benchmark Required Must be first of the month Required Must be first of the month | string (date-time) |
| value | The benchmark value Required Max scale of 6 Must be between 0 and 1.7976931348623157E+308 Required Max scale of 6 Must be between 0 and 1.7976931348623157E+308 | number (double) |
Example Request Body
[
{ "effectiveDate": "2026-03-30", "value": 1.0
}
]
Responses
200
OK
The request succeeded and the response body contains the requested data.
Response Body Parameters
BenchmarkValuesResponse
| Property | Description | Type | |||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| benchmarkCategory | BenchmarkCategoryResponse | ||||||||||||||||
|
BenchmarkCategoryResponse properties
|
|||||||||||||||||
| benchmarkIndicator | Indicator for which benchmark factor Required (defined) | integer (int32) | |||||||||||||||
| benchmarkInfo | benchmark info Required (defined) | string | |||||||||||||||
| benchmarkValues | List of benchmark values and their effective dates Required (defined) | BenchmarkValue[] | |||||||||||||||
|
BenchmarkValue properties
|
|||||||||||||||||
Example Response
{ "benchmarkCategory": { "benchmarkCategoryId": 1, "benchmarkCategoryInfo": "string"
}, "benchmarkIndicator": 1, "benchmarkInfo": "string", "benchmarkValues": [
{ "benchmarkValueId": 1, "effectiveDate": "2026-03-30", "endDate": "2026-03-30", "value": 1.0
}
]
}