Create Transactional Send
documentedCreate a transactional send (email or SMS) to recipients.
POST /v1/transactional-sendsTransactional Sendsno 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://{{$VISION6_API_HOST}}/v1/transactional-sends" \
-X POST \
-H "Authorization: Bearer {{VISION6_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"type": "{{$type}}", "list_id": {{$list_id}}, "group_name": "{{$group_name}}", "message_id": {{$message_id}}, "recipients": [ { "email": "{{$email}}", "first_name": "{{$first_name}}", "url_key": "{{$url_key}}" } ] }'