Skip to content
Developers
Projects

Create a project

POST /projects

POST
/projects

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://loading/api/v1/projects" \  -H "Content-Type: application/json" \  -d '{    "name": "CRM Sync Project",    "clientId": "019cb675-c4d6-7e90-8806-25e5145c3a06",    "startDate": "2026-01-01",    "endDate": "2026-03-01",    "status": "planned"  }'
{
  "data": {
    "name": "CRM Sync Project",
    "clientId": "019cb675-c4d6-7e90-8806-25e5145c3a06",
    "startDate": "2026-01-01",
    "endDate": "2026-03-01",
    "status": "planned"
  }
}
Empty
Empty
Empty
Empty