v1
latestOpenAPI 3.1.02026-07-26294215839.4 KBTime Tracking
Public API
Update Time Tracking Project
Partially updates a time tracking project identified by its ID. Only fields provided in the request body are updated; omitted fields are left unchanged.
OAuth Scopes: time_tracking:project.write
patch/api/v1/time-tracking/projects/{id}
Path parameters
idinteger required
The project ID.
Request body
Example request
{
"name": "Project A",
"billable": true,
"includeInPayroll": true,
"allEmployeesAssigned": true,
"employeeIds": [
1,
2,
3
],
"hasTasks": true
}Response
Successfully updated the project.
Example response
{
"id": 1,
"name": "Project A",
"allEmployeesAssigned": true,
"hasTasks": true,
"createdAt": "2025-10-15T16:00:00Z",
"updatedAt": "2025-10-15T16:00:00Z",
"deletedAt": "2025-10-15T16:00:00Z",
"employeeIds": [
1,
2,
3
]
}