Update user
documentedUpdate details for a specific user by ID.
PUT /v2/users/{user_id}Usersno 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://api.moskitcrm.com/v2/users/{{$user_id}}" \
-X PUT \
-H "apikey: {{MOSKITCRM_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"first_name": "{{$first_name}}", "last_name": "{{$last_name}}", "email": "{{$email}}", "phone": "{{$phone}}"}'