v1

latestOpenAPI 3.1.02026-07-26549156879.0 KB
ProjectManagement > PlannedRecord

Reads all Planned records

Reads all Planned records

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

Query parameters

ids[]string[]

Retrieve only the planned records that matches the ids provided in the request.

Retrieve only the planned records that matches the ids provided in the request.

[
  "314159"
]
project_worker_ids[]string[]

Retrieve only the planned records that matches the project worker ids provided in the request.

Retrieve only the planned records that matches the project worker ids provided in the request.

[
  "314159"
]
start_datestring

Retrieve only the planned records that matches the start date provided in the request.

Example:2025-01-01

Retrieve only the planned records that matches the start date provided in the request.

end_datestring

Retrieve only the planned records that matches the end date provided in the request.

Example:2025-01-03

Retrieve only the planned records that matches the end date provided in the request.

subproject_ids[]string[]

Retrieve only the planned records that matches the subproject ids provided in the request.

Retrieve only the planned records that matches the subproject ids provided in the request.

[
  "314159"
]

Response

OK

Example response

{
  "data": [
    {
      "id": "314159",
      "daily_minutes": 100,
      "start_date": "2025-01-01",
      "end_date": "2025-01-03",
      "project_worker_id": "314159",
      "subproject_id": "314159",
      "week_days": [
        1,
        2,
        3,
        4,
        5
      ]
    }
  ]
}