Sign in

Create/Update Contact

documented

Create a new contact or upsert an existing one.

POST /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" \
  -X POST \
  -u "{{$sendhub_username}}:{{SENDHUB_API_KEY}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"name": "{{$name}}", "number": "{{$number}}", "blocked": {{$blocked}}, "screened": {{$screened}}, "groups": {{$groups}}, "custom_fields": {{$custom_fields}}}'