v1

latestOpenAPI 3.1.02026-07-26549156879.0 KB
ProjectManagement > BudgetStrategy

Reads all Budget strategies

Reads all Budget strategies

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

Query parameters

ids[]string[]

Filter budget strategies by these ids

Filter budget strategies by these ids

[
  "1234",
  "5678"
]
project_ids[]string[]

Filter budget strategies by these project ids

Filter budget strategies by these project ids

[
  "1234",
  "5678"
]
subproject_ids[]string[]

Filter budget strategies by these subproject ids

Filter budget strategies by these subproject ids

[
  "5678"
]
without_subprojectboolean

When true, return only budget strategies without a subproject

When true, return only budget strategies without a subproject

Response

OK

Example response

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