v1

latestOpenAPI 3.1.02026-07-26549156879.0 KB
ProjectManagement > ImputableProject

Reads all Imputable projects

Reads all Imputable projects

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

Query parameters

ids[]string[]

Retrieve only the imputable projects that match the ids provided in the request.

Retrieve only the imputable projects that match the ids provided in the request.

[
  "314159",
  "271828"
]
name_or_codestring

Retrieve only the imputable projects that match the name or code passed in the request.

Example:DS

Retrieve only the imputable projects that match the name or code passed in the request.

only_activeboolean

If true, retrieve only active imputable projects.

Example:true

If true, retrieve only active imputable projects.

assignedboolean

If true, retrieve only imputable projects that have at least one assigned project worker.

If true, retrieve only imputable projects that have at least one assigned project worker.

employee_ids[]string[]

Retrieve only the imputable projects in which the employees passed in the request are project workers.

Retrieve only the imputable projects in which the employees passed in the request are project workers.

Response

OK

Example response

{
  "data": [
    {
      "id": "314159",
      "name": "Destroy the death star",
      "code": "DS",
      "start_date": "2025-01-01",
      "due_date": "2025-01-01",
      "status": "active",
      "currency": "EUR"
    }
  ]
}