Sign in

Update contact

documented

Update a contact's fields.

PUT /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.close.com/api/v1/contact/{{$id}}/" \
  -X PUT \
  -H "Authorization: Bearer {{CLOSE_API_KEY}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"name": "{{$name}}", "first_name": "{{$first_name}}", "last_name": "{{$last_name}}", "emails": [{"address": "{{$email}}", "type": "work"}], "phones": [{"phone_number": "{{$phone}}", "type": "work"}], "organization": "{{$organization}}", "notes": "{{$notes}}", "custom_fields": {"{{$custom_field_id}}": "{{$custom_field_value}}"}}'"
Update contact · Close · OpenIntegrations