Create user
documentedCreate a new user (Resource, Placeholder or Member) in the workspace.
POST /api/users/v1Usersno 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://next.liquidplanner.com/api/users/v1" \
-X POST \
-H "Content-Type: application/json" \
-H "Authorization: Bearer {{LIQUIDPLANNER_API_KEY}}" \
-H "Accept: application/json" \
-d '{"username": "{{$username}}", "firstName": "{{$firstName}}", "lastName": "{{$lastName}}", "userType": "{{$userType}}", "workspaces": [{{$workspace_id}}], "email": "{{$email}}"}'