Sign in

Create contact

documented

Create a new contact in Thryv via REST v2.

POST /v2/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.infusionsoft.com/crm/rest/v2/contacts" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"given_name": "{{$given_name}}", "family_name": "{{$family_name}}", "email_addresses": [{"email": "{{$email}}", "field_type": "{{$email_type}}"}]}'