Sign in

Create project

documented

Create a new project.

POST /api/v2/kasesProjectsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.capsulecrm.com/api/v2/kases" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"kase": {"party": { "id": {{$party_id}} }, "status": "OPEN", "description": "{{$description}}", "name": "{{$name}}", "stage": {{$stage_id}}, "expectedCloseOn": "{{$expected_close_on}}", "tracks": [ { "definition": { "id": {{$track_def_id_1}} } }, { "definition": { "id": {{$track_def_id_2}} } } ], "fields": [ { "definition": { "id": {{$field_def_id_1}} }, "value": "{{$field_value_1}}" }, { "definition": { "id": {{$field_def_id_2}} }, "value": "{{$field_value_2}}" } ] } }'"}
Create project · Capsule CRM · OpenIntegrations