Sign in

Update contact

documented

Update an existing contact.

PATCH /v2/contacts/{CONTACT_ID}Clientsno 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.harvestapp.com/v2/contacts/{{$CONTACT_ID}}" \
  -X PATCH \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Harvest-Account-Id: {{ACCOUNT_ID}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -H "User-Agent: KeychainsHarvest/1.0" \
  -d '{"client_id": {{$client_id}}, "title": "{{$title}}", "first_name": "{{$first_name}}", "last_name": "{{$last_name}}", "email": "{{$email}}", "phone_office": "{{$phone_office}}", "phone_mobile": "{{$phone_mobile}}", "fax": "{{$fax}}"}'
Update contact · Harvest · OpenIntegrations