Sign in

Patch contact

documented

Partially update fields on a contact.

PATCH /v2/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.moskitcrm.com/v2/contacts/{{$contact_id}}" \
  -X PATCH \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "apikey: {{MOSKITCRM_API_KEY}}" \
  -d '{"given_name": "{{$first_name}}", "family_name": "{{$last_name}}", "email": "{{$email}}", "phone": "{{$phone}}", "company": "{{$company}}", "custom_fields": [{"id": {{$custom_field_id}}, "value": "{{$custom_field_value}}"}]}'