GetTopNLinkedSurveyIds

Description

Get Survey Ids for N last surveys linked to the panel.

Signature
string[] GetLinkedSurveyIds(string key, string panelId, int topN)

Parameters

Name Data Type Description

key

string required

The authentication key

panelId

string required

topN

int required

Number of survey ids to retrieve

Response

Data Type Description

string[ ]

String array with the project ids

Example

var communityPanelSoapClient = new CommunityPanelSoapClient();

var surveyIds = communityPanelSoapClient.GetTopNLinkedSurveyIds(key, "p123456789", 20);