AdministrationClientReportMemberBatch Method |
Analyse the final results of the completed processing for a batch of Members, from the submitted Batch RSN.
This method is a step in the workflow for Member File Batch submission.
public ResultOfBatchReport ReportMemberBatch( ManagementGroupRequestOfguid request )
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("f5bc0592-9b53-4a98-8b06-c4fc49ce3407");; //Required - Returned from AdministrationService.OpenMemberBatch (ResultOfBatch.Key) AdministrationService.ResultOfBatchReport result = svc.ReportMemberBatch(request); if (result.FaultCode == 0) { //Request succeeded } else { //Request failed throw new Exception(result.FaultDescription); } }