aldel
aldel

Reputation: 6748

Get Panel ID from Survey ID in Qualtrics API

I think this may be impossible, but I'm hoping I overlooked something.

At least in some cases, I can log in to the Qualtrics web site, look up a survey, and figure out what panel was used to distribute the survey. We use panel authentication, so I can look at the survey flow in the "Branch on successful authentication" box, and see the name of the panel used, as well as the library.

The question is, can this be done programmatically through the API? If I have the Survey ID, can I find the Panel ID and the Library ID?

I've tried the getSurvey request, of course (with and without the ExportLogic flag). Its response seems to include a SurveyFlow section that includes an Authenticator block, but I don't see anything in there about a panel.

Upvotes: 0

Views: 446

Answers (1)

T. Gibbons
T. Gibbons

Reputation: 5004

The way I've used the api to identify panel/survey associations is through getDistributions. Unfortunately, since you are using authentication instead of invites I don't think it will work.

I haven't done it, but in your case I think you can find panel/survey associations using getPanel with Recipient history. That means you'll have to use XML and do a lot of searching through individual panelists to see what surveys they responded to.

Upvotes: 1

Related Questions