v1
latestOpenAPI 3.1.02026-07-26294215839.4 KBTime Tracking
Public API
Create Time Tracking Project
Creates a new time tracking project. Returns the newly created project resource on success.
OAuth Scopes: time_tracking:project.write
post/api/v1/time-tracking/projects
Request body
Example request
{
"name": "Project A",
"billable": true,
"includeInPayroll": true,
"employeeIds": [
1,
2,
3
],
"tasks": [
{
"name": "Task A",
"billable": true
}
]
}Response
Project created successfully.
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
]
}