Create user
documentedCreate a new user.
POST /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://{{$base_url}}/api/v3/users" \
-X POST \
-H "x-api-key: {{CYPHERLEARNING_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"email": "{{$email}}", "first_name": "{{$first_name}}", "last_name": "{{$last_name}}", "login": "{{$login}}", "roles": {{$roles}}}'