.data: Data frame of active surveys created by the function all_surveys().
survey_name: String. Name of the survey as it appears in the Qualtrics UI. Must be unique to be passed to fetch_id().
partial_match: Boolean. Will match all surveys containing the exact string provided. Defaults to FALSE, which matches against the entire name.
Details
Survey names in the Qualtrics platform are not required to be unique, but the survey_name argument for this function must be unique. If input results in multiple surveys being matched, will error with a list of up to 5 matches & their IDs
Examples
## Not run:# Register your Qualtrics credentials if you haven't alreadyqualtrics_api_credentials( api_key ="<YOUR-API-KEY>", base_url ="<YOUR-BASE-URL>")# Retrieve a list of surveyssurveys <- all_surveys()# Retrieve surveyID for a unique surveymy_id <- fetch_id(surveys,"Unique Survey Name")## End(Not run)