Update Contact
documentedReplace an existing contact's properties.
PUT /v1/contacts/{contact_id}Contactsno implementation yet0 runsNo 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.sendhub.com/v1/contacts/{{$contact_id}}" \
-X PUT \
-u "{{$sendhub_username}}:{{SENDHUB_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"id": "{{$contact_id}}", "name": "{{$name}}", "blocked": {{$blocked}}, "keyword": "{{$keyword}}", "custom_fields": {"field1": "{{$field1}}"}}'