Add recipient
documentedAdd a recipient to a survey.
POST /surveys/{survey_id}/recipientsSurveysno 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/main/surveys/{{$survey_id}}/recipients" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"recipients": [{"email": "{{$email}}", "name": "{{$name}}"}]}'