Dispatch survey
documentedTrigger sending of the survey to its recipients (e.g., via email).
POST /surveys/{survey_id}/dispatchSurveysno 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://feedback.callexa.com/api/v1/surveys/{{$survey_id}}/dispatch" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"send_at": "{{$send_at}}", "recipients": [{"email": "{{$recipient_email}}", "name": "{{$recipient_name}}"}], "channel": "email", "subject": "{{$subject}}", "body": "{{$body}}"}'