Sign in

Update a contact

documented

Update details for a specific contact.

PUT /api/v3/user/{user_id}Users / Contactsno implementation yet0 runs
No 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://{{$site_name}}.chargeover.com/api/v3/user/{{$user_id}}" \
  -X PUT \
  -u "{{CHARGEOVER_API_KEY}}:{{CHARGEOVER_SECRET}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{"external_key": "{{$external_key}}", "username": "{{$username}}", "password": "{{$password}}", "name": "{{$name}}", "first_name": "{{$first_name}}", "middle_name_glob": "{{$middle_name_glob}}", "last_name": "{{$last_name}}", "name_suffix": "{{$name_suffix}}", "title": "{{$title}}", "email": "{{$email}}", "phone": "{{$phone}}", "mobile": "{{$mobile}}", "user_type_id": {{$user_type_id}}, "custom_1": "{{$custom_1}}", "custom_2": "{{$custom_2}}", "custom_3": "{{$custom_3}}", "custom_4": "{{$custom_4}}", "custom_5": "{{$custom_5}}" }'