Retrieves the summary for a specific version on a budget
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 |
|---|---|---|---|
| budgetId | The identifier for the budget | integer (int32) | Required |
| versionId | The identifier for the version being retrieved | integer (int32) | Required |
Query Parameters
| Name | Description | Type | Required |
|---|---|---|---|
| commodityId | The optional commodity filter | integer (int32) | Optional |
Responses
200
OK
The request succeeded and the response body contains the requested data.
Response Body Parameters
BudgetVersionSummaryResponse
| Property | Description | Type | ||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| budgetVersion | BudgetVersionResponse | |||||||||||||||||||||||||||||||||||||||||||||||||
|
BudgetVersionResponse properties
|
||||||||||||||||||||||||||||||||||||||||||||||||||
| dataDetails | The data details | BudgetVersionSummary[] | ||||||||||||||||||||||||||||||||||||||||||||||||
|
BudgetVersionSummary properties
|
||||||||||||||||||||||||||||||||||||||||||||||||||
| total | BudgetVersionSummary | |||||||||||||||||||||||||||||||||||||||||||||||||
|
BudgetVersionSummary properties
|
||||||||||||||||||||||||||||||||||||||||||||||||||
Example Response
{ "budgetVersion": { "active": false, "budgetId": 1, "budgetVersionId": 1, "budgetVersionInfo": "string", "hasBeenModified": false, "modifiedBy": { "fullName": "string", "userCode": "string", "userId": 1
}, "modifiedDate": "2026-03-30", "notes": "string", "totalBudget": 1.0, "versionNumber": 1
}, "dataDetails": [
{ "averageUnitCost": 1.0, "cost": 1.0, "period": 1, "use": { "unit": {}, "value": 1.0
}
}
], "total": { "averageUnitCost": 1.0, "cost": 1.0, "period": 1, "use": { "unit": {}, "value": 1.0
}
}
}