GetSurveyUrl

Description

Returns a survey url for the specified survey and respid. Url is valid for 60 sec, and just one time.

Signature
string GetSurveyUrl(string key, DatabaseType databaseType, string surveyId, string panelId, int panelistId, int respId, bool isEnterprisePanel)

Parameters

Name Data Type Description

key

string required

The authentication key

databaseType

DatabaseType required

surveyId

string required

panelId

string required

panelistId

int required

respId

int required

isEnterprisePanel

bool required

Should always be true for Standard/Professional panels

Response

Data Type Description

string

The unique link to the survey

Example

var communityPanelSoapClient = new CommunityPanelSoapClient();

var surveyUrl = communityPanelSoapClient.GetSurveyUrl(key, DatabaseType.Production, "p987654321", "p123456789", "99", "88", true);