v1
latestOpenAPI 3.1.02026-07-26549156879.0 KBProjectManagement > Project
Creates a Project
What does it do?
This creates a new project. By default, the project will be created with the status active.
What body params do you need?
- name: is mandatory to pass a name of the project.
- code: optional unique code for the project to be identifiable and searchable.
- start_date: optional start date for the project. If given must be in iso-8601 format (YYYY-MM-DD).
- due_date: optional due date for the project. If given must be in iso-8601 format (YYYY-MM-DD).
- status: a project can have the status active or closed. By default, the project will be created with the status active.
- employees_assignment: optional param to define the kind of assignation the project has. Its possible values are: [manual, company]. A project can have manual assignation or can be defined to be assigned to the whole company. Defaults to manual.
Who can use it?
Only companies who have enabled the projects_management feature and users with the permission of create projects.
post/api/2026-07-01/resources/project_management/projects
Request body
Example request
{
"name": "Project Name",
"code": "PRO",
"description": "A comprehensive project to develop and implement a new customer relationship management system",
"start_date": "2024-10-30",
"due_date": "2026-01-01",
"status": "active",
"employees_assignment": "company",
"project_admins": [
"314159"
],
"project_managers": [
"271828"
],
"is_billable": true,
"fixed_cost_cents": 50000,
"budget_allocation": 1200,
"legal_entity_id": "123",
"budget_allocation_cents": 100000,
"fee_amount_cents": 25000,
"client_id": "1"
}Response
CREATED
Example response
{
"id": "314159",
"name": "Project name",
"code": "PRO",
"description": "A comprehensive project to develop and implement a new customer relationship management system",
"start_date": "2025-01-01",
"due_date": "2026-01-01",
"status": "active",
"employees_assignment": "manual",
"inputed_minutes": 123,
"is_billable": true,
"fixed_cost_cents": 123,
"labor_cost_cents": 123,
"legal_entity_id": "123",
"spending_cost_cents": 123,
"client_id": "123",
"total_cost_cents": 123
}