Sign in

Update contact

documented

Partially update a contact's fields.

PATCH /crm/rest/v1/contacts/{contact_id}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://api.infusionsoft.com/crm/rest/v1/contacts/{{$contact_id}}" \
  -X PATCH \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"FirstName": "{{$firstName}}", "LastName": "{{$lastName}}", "email_addresses": [{"email": "{{$email}}", "field": "EMAIL1"}], "addresses": [{"line1": "{{$addressLine1}}", "city": "{{$city}}", "region": "{{$region}}", "postal_code": "{{$postalCode}}", "country_code": "USA", "field": "BILLING"}]}'"