Create user
documentedCreate 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 runsNo 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}}"}'