v1

latestOpenAPI 3.1.02026-07-26549156879.0 KB
ProjectManagement > BudgetStrategy

Creates a Budget strategy

Creates a Budget strategy

post/api/2026-07-01/resources/project_management/budget_strategies

Request body

budget_strategy_type'project_fixed_cost' | 'total_budget' | 'without_budget' required

Type of budget strategy. One of project_fixed_cost => ProjectFixedCost, total_budget => TimeAndMaterials, without_budget => WithoutBudget

planned_centsinteger

Planned amount in cents (for project_fixed_cost / total_budget)

planned_minutesinteger

Planned time in minutes (for total_budget)

fee_amount_centsinteger

Fee amount in cents (for project_fixed_cost / total_budget when is billable)

project_idstring required

Id of the project this budget strategy belongs to

subproject_idstring

Id of the subproject, if any

delegatedboolean

Whether the budget strategy is delegated

Example request

{
  "budget_strategy_type": "total_budget",
  "planned_cents": 100000,
  "planned_minutes": 6000,
  "fee_amount_cents": 5000,
  "project_id": "1234",
  "subproject_id": "5678"
}

Response

CREATED

idstring required

Factorial id of the budget strategy

budget_type'project_fixed_cost' | 'total_budget' | 'without_budget' required

Type of budget strategy. One of project_fixed_cost => ProjectFixedCost, total_budget => TimeAndMaterials, without_budget => WithoutBudget

planned_centsinteger

Planned amount in cents (for project_fixed_cost / total_budget)

planned_minutesinteger

Planned time in minutes (for total_budget)

fee_amount_centsinteger

Fee amount in cents (for project_fixed_cost / total_budget when is billable)

project_idstring required

Id of the project this budget strategy belongs to

subproject_idstring

Id of the subproject this budget strategy belongs to, if any

delegatedboolean required

Whether the budget strategy is delegated

Example response

{
  "id": "1234",
  "budget_type": "total_budget",
  "planned_cents": 100000,
  "planned_minutes": 6000,
  "fee_amount_cents": 5000,
  "project_id": "1234",
  "subproject_id": "5678"
}