Sign in

Delete recipient

documented

Remove a recipient from a survey.

DELETE /surveys/{survey_id}/recipients/{recipient_id}Surveysno 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)

Note: The Callexa RESTful API documentation is available at the Callexa API docs site, and the endpoint path for deleting a recipient from a survey is DELETE /surveys/{survey_id}/recipients/{recipient_id}. The base URL is typically the API host for Callexa Feedback (here shown as https://api.feedback.callexa.com/v1). Here is the Keychains curl command using placeholders for the two path parameters and an OAuth2 access token.

npx -y keychains@latest curl "https://api.feedback.callexa.com/v1/surveys/{{$survey_id}}/recipients/{{$recipient_id}}" \
  -X DELETE \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Accept: application/json"
Delete recipient · Callexa Feedback · OpenIntegrations