Create budget entry
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/b35b7fb5-df86-5776-b181-68564193d36/entries' \
--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"}'
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"
}
Response examples (201)
{
"id": "a24a6ea4-ce75-4665-a070-57453082c25",
"department_id": "c46c8gc6-eg97-6887-c292-79675204e47"
}