Create contact
documentedCreates a new contact for one or multiple lists.
POST /contactsContactsno 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://app.callonthego.com/api/v1/contacts" \
-X POST \
-H "x-cotg-authtoken: {{CALLONTHEGO_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"list_ids": {{$list_ids}}, "first_name": "{{$first_name}}", "last_name": "{{$last_name}}", "number": "{{$phone}}", "email": "{{$email}}", "company": "{{$company}}", "notes": "{{$notes}}"}'