Sign in

Create user

documented

Create a new user in the workspace (e.g., invite/join). ([developers.activecollab.com](https://developers.activecollab.com/api-documentation/v1/authentication.html))

POST /api/v1/usersUsersno 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/users" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "X-Angie-AuthApiToken: {{ACTIVECOLLAB_AUTH_TOKEN}}" \
  -d '{"type": "Member", "email": "{{$email}}", "password": "{{$password}}"}'
Create user · activecollab · OpenIntegrations