| name | create_project |
| tier | 1 |
| task | T08 |
| description | This skill should be used when the task asks to "create a project", "opprett eit prosjekt", "erstellen Sie das Projekt", "créez le projet", "crie o projeto", or involves creating a project linked to a customer with a project manager in Tripletex. |
Create Project
Exactly 3 API calls. Customer and PM are PRE-CREATED — search, do NOT create.
Call 1: Find Existing Customer
GET /customer?organizationNumber=<org_nr>&fields=id,name&count=10
Do NOT create — use existing.
Call 2: Find Project Manager
GET /employee?email=<email>&fields=id,firstName,lastName&count=5
PM pre-exists.
Call 3: Create Project
POST /project
{
"name": "Analyse Windkraft",
"customer": {"id": <customer_id>},
"projectManager": {"id": <employee_id>},
"startDate": "2026-03-20"
}
startDate is required.
Total: 3 calls, 0 errors.
Gotchas
- Customer is PRE-CREATED — search by org number, NEVER create
- Creating duplicate customer links project to wrong entity → 0 score
- PM pre-exists — search by email
startDate is required on project