Sign in

Create project

documented

Create a new project with members and settings. ([developers.activecollab.com](https://developers.activecollab.com/api-documentation/v1/projects/projects.html))

POST /api/v1/projectsProjectsno 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://app.activecollab.com/{{$instance_id}}/api/v1/projects" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "X-Angie-AuthApiToken: {{OAUTH2_ACCESS_TOKEN}}" \
  -d '{"name": "{{$title}}", "body": "{{$description}}", "company_id": {{$company_id}}, "leader_id": {{$leader_id}}, "members": [{{$member_id_1}}, {{$member_id_2}}]}'
Create project · activecollab · OpenIntegrations