Create contact via webhook
documentedCreate or update a Call Loop contact by posting contact data to a webhook URL and optionally assign to a list.
POST /webhook/create-contact/custom/{webhook_id}Contactsno 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://api.callloop.com/webhook/create-contact/custom/{{$webhook_id}}" \
-X POST \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"phone": "{{$phone}}", "firstName": "{{$firstName}}", "lastName": "{{$lastName}}", "email": "{{$email}}"}'