CreatePanelist

Description

Add a new panelist record to a given panel

Signature
int CreatePanelist(string key, string panelProjectId, string[] fieldNames, string[] fieldValues)

Parameters

Name Data Type Description

key

string required

The authentication key

panelProjectId

string required

The project id of the panel

fieldNames

string[ ] required

The field names for this panelist

fieldValues

string[ ] required

The values (corresponding to the field names) for this panelist

Response

Data Type Description

int

The ID of panelist that has been added

Example

var communityPanelSoapClient = new CommunityPanelSoapClient();

var panelistId = communityPanelSoapClient.CreatePanelist(
    key,
    "p123456789",
    new string[] { "email" },
    new string[] { "bruce.wayne@example.test" }
);