GetCustomProjectInfoField

Description

Get a value of a custom info field for a project

Signature
string GetCustomProjectInfoField(string key,string projectId, string fieldId)

Parameters

Name Data Type Description

key

string required

The authentication key

projectId

string required

ID of the project

fieldId

string required

ID of the field (not to be confused with NAME of field)

Response

Data Type Description

string

The value of the field

Example

var client = new SurveyDesignSoapClient();

var fieldValue = client.GetCustomProjectInfoField(clientKey, "p123123", "custom_1");