Update budget entry
Update a budget entry for given production and budget.
PUT
/data/projects/{project_id}/budgets/{budget_id}/entries/{entry_id}
curl \
--request PUT 'http://api.example.com/data/projects/a24a6ea4-ce75-4665-a070-57453082c25/budgets/b35b7fb5-df86-5776-b181-68564193d36/entries/c46c8gc6-eg97-6887-c292-79675204e47' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"department_id":"c46c8gc6-eg97-6887-c292-79675204e47","person_id":"a24a6ea4-ce75-4665-a070-57453082c25","start_date":"2025-01-01","months_duration":12,"daily_salary":100.0,"position":"Artist","seniority":"Mid","exceptions":{"2025-01-01":1000,"2025-02-01":2000}}'
Request examples
{
"department_id": "c46c8gc6-eg97-6887-c292-79675204e47",
"person_id": "a24a6ea4-ce75-4665-a070-57453082c25",
"start_date": "2025-01-01",
"months_duration": 12,
"daily_salary": 100.0,
"position": "Artist",
"seniority": "Mid",
"exceptions": {
"2025-01-01": 1000,
"2025-02-01": 2000
}
}
Response examples (200)
{}