Update client
documentedUpdate client details (name, location and custom fields).
PATCH /clients/{client_id}Clientsno 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.formitize.com/v1/clients/{{$client_id}}" \
-X PATCH \
-H "Authorization: Bearer {{FORMITIZE_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"billing_name": "{{$billing_name}}", "billing_address": "{{$billing_address}}", "city": "{{$city}}", "state": "{{$state}}", "postal_code": "{{$postal_code}}", "country": "{{$country}}", "phone": "{{$phone}}", "email": "{{$email}}", "custom_fields": {"field1": "{{$field1}}", "field2": "{{$field2}}"}}'