Sign in

Bulk Upsert Contacts

documented

Create/update multiple contacts in a single request.

PATCH /v1/contactsContactsno 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.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}}"}'