post https://api.bamboohr.com/api/gateway.php//v1/time_tracking/projects
Create a time tracking project with optional tasks.
Example Request
{
"name": "Project A",
"billable": true,
"allowAllEmployees": true,
"hasTasks": true,
"tasks": [
{
"name": "Task 1",
"billable": true
},
{
"name": "Task 2",
"billable": false
}
]
}
Example Response
{
"id": 11,
"name": "Project A",
"tasks": [
{
"id": 19,
"name": "Task 1"
},
{
"id": 20,
"name": "Task 2"
}
]
}