Create a budget entry for given production and budget
POST
/data/projects/{project_id}/budgets/{budget_id}/entries
curl \
--request POST 'http://api.example.com/data/projects/a24a6ea4-ce75-4665-a070-57453082c25/budgets/a24a6ea4-ce75-4665-a070-57453082c25/entries' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/x-www-form-urlencoded" \
--data 'department_id=a24a6ea4-ce75-4665-a070-57453082c25&person_id=a24a6ea4-ce75-4665-a070-57453082c25&start_date=2025-01-01&months_duration=12&daily_salary=100.0&position=Artist&seniority=Mid'
Response examples (201)
{
"id": "string",
"department_id": "string"
}