cURL
curl --request POST \ --url https://api.example.com/v1/projects \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "description": "<string>", "templateSlug": "<string>" } '
Create a new project in your organization.
curl -X POST https://api.getkommit.ai/v1/projects \ -H "Authorization: Bearer km_your_api_key" \ -H "Content-Type: application/json" \ -d '{ "name": "Payment System", "description": "Stripe integration for subscription billing" }'
Was this page helpful?