Sign in

Update contact

documented

Updates a contact by ID.

PUT /api/v1/contact/{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.nimble.com/api/v1/contact/{{$contact_id}}?type={{$type}}&leads_data={{$leads_data}}" \
  -X PUT \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"avatar_url": "{{$avatar_url}}", "fields": {"first name": [ {"value": "{{$first_name}}", "modifier": ""} ], "last name": [ {"value": "{{$last_name}}", "modifier": ""} ], "email": [ {"value": "{{$email}}", "modifier": ""} ] }, "owner_id": "{{$owner_id}}", "is_important": {{$is_important}} }'"}
Update contact · nimble · OpenIntegrations