Returns budget details by ID. Returns 404 if not found.
GET
/api-v1/budget/{id}
curl \
--request GET 'https://wyzio.app/api-v1/budget/{id}'
Response examples (200)
{
"id": 42,
"parent": 42,
"period": {
"id": 42,
"fiscalYear": 42,
"startDate": "2026-05-04T09:42:00Z",
"endDate": "2026-05-04T09:42:00Z"
},
"name": "string",
"reportType": "PL",
"status": "ACTIVE",
"department": 42,
"article": 42,
"contact": 42,
"orderId": 42,
"entries": [
{
"id": 12345678,
"reportLine": 12345678,
"date": "2026-11-01T00:00:00.000Z",
"value": 5.55,
"newValue": 5.55,
"total": 5.55,
"chart": 12345678,
"hasChildBudget": false
}
],
"warnings": "string",
"officeId": 42,
"isReadOnly": true
}