Click or drag to resize

AdministrationClientSelectSettings Method

Select the Settings details, from the submitted Settings RSN.

The Settings RSN can be fetched from the Web Service Method: SelectSettingsList

Settings are a row of Fields and Values that provide enterprise values for the Loyalty Implementation.

Syntax
C#
public ResultOfSettings SelectSettings(
	ManagementGroupRequestOfguid request
)

Parameters

request
Type: AdministrationServiceManagementGroupRequestOfguid

Return Value

Type: ResultOfSettings
Examples
C#
using (var svc = new AdministrationService.AdministrationClient())
{
  var request = new AdministrationService.ManagementGroupRequestOfguid();
  request.Token = "Token";//Required - Token returned from AccountService.ManagementGroupLogin
  request.ManagementGroup = "Management group";//Required - ManagementGroup supplied when calling AccountService.ManagementGroupLogin
  request.Value = new Guid("4f6f3e78-69cb-492f-a57a-ae482372e140");; //Required - RSN of settings

  AdministrationService.ResultOfSettings result = svc.SelectSettings(request);

  if (result.FaultCode == 0)
  {
    //Request succeeded
  }
  else
  {
    //Request failed          
    throw new Exception(result.FaultDescription);
  }
}
See Also