Project Endpoints
API endpoints for project management, modules, and sprints.
Projects
List Projects
GET /api/organization-projects?take=20&skip=0&relations[]=members&relations[]=organizationContact
Authorization: Bearer {token}
Response (200 OK):
{
"items": [
{
"id": "...",
"name": "Gauzy Platform",
"description": "Open-source business management platform",
"billing": "RATE",
"currency": "USD",
"startDate": "2024-01-01T00:00:00.000Z",
"endDate": null,
"budget": 100000,
"budgetType": "COST",
"openSource": true,
"taskListType": "GRID",
"membersCount": 15,
"isActive": true,
"organizationId": "...",
"organizationContactId": "..."
}
],
"total": 8
}
Get Project by ID
GET /api/organization-projects/{id}?relations[]=teams&relations[]=modules
Authorization: Bearer {token}
Create Project
POST /api/organization-projects
Authorization: Bearer {token}
Content-Type: application/json
{
"name": "New Project",
"description": "Project description",
"billing": "RATE",
"currency": "USD",
"startDate": "2024-01-01",
"budget": 50000,
"budgetType": "COST",
"taskListType": "SPRINT",
"organizationId": "org-uuid",
"members": [{ "id": "employee-uuid" }]
}
Update Project
PUT /api/organization-projects/{id}
Authorization: Bearer {token}
Content-Type: application/json
{
"name": "Updated Name",
"billing": "MILESTONES"
}