GetPanelVariables

Description

Get the field values for a particular panelist on a panel

Signature
string[] GetPanelVariables(string key, string panelProjectId, int userId, string[] fieldNames)

Parameters

Name Data Type Description

key

string required

The authentication key

panelProjectId

string required

The project id of the panel

userId

int required

The ID of the panelist

fieldNames

string[ ] required

The field names you would like to retrieve data

Response

Data Type Description

string[ ]

An array of field values based on the given field names

Example

var communityPanelSoapClient = new CommunityPanelSoapClient();

var panelistFieldValues = communityPanelSoapClient.GetPanelVariables(
    key,
    "p123456789",
    99,
    new string[] { "email", "name", "gender"}
);