Update user
documentedUpdate a user’s details (name/email).
PUT /api/users/{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://{{$subdomain}}.letsfreckle.com/api/users/{{$user_id}}.xml" \
-X PUT \
-H "X-FreckleToken: {{LETSFRECKLE_API_TOKEN}}" \
-H "Content-Type: text/xml" \
-H "Accept: application/xml" \
-d '<user><email>{{$email}}</email><first_name>{{$first_name}}</first_name><last_name>{{$last_name}}</last_name></user>'