curl --request POST \ --url http://localhost:3000/api/v1/projects \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "name": "AI Chatbot", "description": "Customer service chatbot", "icon": "🤖", "color": "#3B82F6" }'
{ "success": true, "message": "Project created", "project": { "id": "proj_123abc", "name": "AI Chatbot", "description": "Customer service chatbot", "icon": "🤖", "color": "#3B82F6", "createdAt": "2024-01-17T10:30:00Z", "updatedAt": "2024-01-17T10:30:00Z" } }
Creates a new project for the authenticated user
name