v1

latestOpenAPI 3.1.02026-07-26549156879.0 KB
ProjectManagement > ProjectWorker

Creates a Project worker

What does it do?

This creates a new project worker. By default, the project worker will be created with the status assigned.

Who can use it?

Only companies who have enabled the projects_management feature and users with a role in the given project.

post/api/2026-07-01/resources/project_management/project_workers

Request body

project_idstring required

The id of the project to assign the employee project worker.

employee_idstring required

The id of the employee to be assigned to the project.

Example request

{
  "project_id": "314159",
  "employee_id": "21"
}

Response

CREATED

idstring required

id of the project worker.

project_idstring required

id of the project.

employee_idstring required

id of the employee.

assignedboolean required

true if the employee is assigned to the project, false otherwise.

inputed_minutesinteger

total inmputed minutes of the employee in the project.

labor_cost_centsinteger

total project currency labor cost of the employee in the project.

company_labor_cost_centsinteger

total company currency labor cost of the employee in the project.

spending_cost_centsinteger

total spending cost of the employee in the project.

Example response

{
  "id": "92732",
  "project_id": "314159",
  "employee_id": "21",
  "assigned": true,
  "inputed_minutes": 100,
  "labor_cost_cents": 100,
  "company_labor_cost_cents": 100,
  "spending_cost_cents": 100
}