Sign in

Update contact

documented

Updates a contact for an authenticated user.

PUT /contacts/{id}Contactsno 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/contacts/{{$id}}" \
  -X PUT \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "x-cotg-authtoken: {{CALLONTHEGO_API_KEY}}" \
  -d '{"first_name": "{{$first_name}}", "last_name": "{{$last_name}}", "number": "{{$number}}", "email": "{{$email}}", "company": "{{$company}}", "notes": "{{$notes}}"}'