Sign in

Add contact to list

documented

Creates a new contact within the specified list.

POST /lists/{id}/contact/addListsno 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://app.callonthego.com/api/v1/lists/{{$id}}/contact/add" \
  -X POST \
  -H "x-cotg-authtoken: {{CALLONTHEGO_API_KEY}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"first_name": "{{$first_name}}", "last_name": "{{$last_name}}", "number": "{{$number}}", "company": "{{$company}}", "notes": "{{$notes}}"}'
Add contact to list · CallOnTheGo · OpenIntegrations