v1

latestOpenAPI 3.0.32026-08-0613775357.6 KB
budget_items

List budget items

Lists the accessible project/phase budget items of the specified type.

get/projects/{project_id}/budget_items

Query parameters

item_type'TimeFees' | 'TimeFeesDays' | 'Expenses' required

The kind of item being budgeted.

  • "TimeFees" is for currency-based budgeting ($).
  • "TimeFeesDays" is for time-based budgeting (hours).
  • "Expenses" is for non-time-related, currency-based budgeting ($).
Example:TimeFeesDays

Response

The accessible budget items.

Example response

{
  "paging": {
    "per_page": 100,
    "page": 1,
    "previous": "/api/v1/users?per_page=1000&page=1",
    "self": "/api/v1/users?per_page=1000&page=2",
    "next": "/api/v1/users?per_page=1000&page=3"
  },
  "data": [
    {
      "id": 6789,
      "amount": 30.5,
      "assignable_id": 821065,
      "item_type": "TimeFeesDays",
      "created_at": "2025-01-22T06:00:30Z",
      "updated_at": "2025-01-22T06:13:40Z"
    }
  ]
}