Update user
documentedUpdate an existing user's details.
PATCH /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.cypherlearning.com/api/v3/users/{{$user_id}}\" \
-X PATCH \
-H \"Content-Type: application/json\" \
-H \"Accept: application/json\" \
-H \"x-api-key: {{CYPHERLEARNING_API_KEY}}\" \
-d '{\"first_name\": \"{{$first_name}}\", \"last_name\": \"{{$last_name}}\", \"email\": \"{{$email}}\", \"job_title\": \"{{$job_title}}\", \"tags\": [\"{{$tag1}}\", \"{{$tag2}}\"]}'