Update contact
documentedUpdate contact details.
PATCH /clients/{client_id}/contacts/{contact_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}}/contacts/{{$contact_id}}" \
-X PATCH \
-H "Authorization: Bearer {{FORMITIZE_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"first_name": "{{$first_name}}", "last_name": "{{$last_name}}", "email": "{{$email}}", "phone": "{{$phone}}", "mobile": "{{$mobile}}", "title": "{{$title}}", "company": "{{$company}}", "notes": "{{$notes}}", "custom_fields": {"custom_field_1": "{{$custom1}}", "custom_field_2": "{{$custom2}}"}}'