v1

latestOpenAPI 3.1.02026-07-26549156879.0 KB
ProjectManagement > PlannedRecord

Bulk creates a Planned record

Bulk creates a Planned record

post/api/2026-07-01/resources/project_management/planned_records/bulk_create

Request body

project_worker_idsstring[] required

The project worker ids to create the planned records for

start_datestring required

The start date to create the planned records for

end_datestring required

The end date to create the planned records for

daily_minutesinteger required

The daily minutes to create the planned records for

subproject_idstring

The subproject id to create the planned records for

week_daysinteger[]

The week days to create the planned records for, start in Sunday 0 and end in Saturday 6

Example request

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

Response

OK

idstring required

The id of the planned record

daily_minutesinteger required

The daily minutes of the planned record

start_datestring required

The start date of the planned record

end_datestring required

The end date of the planned record

project_worker_idstring required

The project worker id of the planned record

subproject_idstring

The subproject id of the planned record

week_daysinteger[] required

The week days of the planned record, start in Sunday 0 and end in Saturday 6

Example response

[
  {
    "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
    ]
  }
]