Sign in

Trigger custom webhook

documented

Trigger a Call Loop Custom Trigger by posting required fields (phone, first, last, email) and any merge tokens to customize the message.

POST /webhook/Custom/{trigger_id}Triggersno 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.callloop.com/webhook/Custom/{{$trigger_id}}" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"phone":"{{$phone}}","first":"{{$first}}","last":"{{$last}}","email":"{{$email}}","custom_field_1":"{{$custom1}}"}'