LoyaltyPartnerClientOpenSaleTransactionBatch Method |
Initialise the Batch for submitting file(s) containing Transactions. The service returns the Batch Details, containing a key for calling the subsequent workflow Transaction Batch methods.
This method is a step in the workflow for Transaction File Batch submission.
public ResultOfBatch OpenSaleTransactionBatch( ManagementGroupRequestOfguid request )
using (var svc = new LoyaltyService.LoyaltyPartnerClient()) { var request = new LoyaltyService.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("5d43f79b-c723-4466-880b-0e01dc1d2560");;//Required - RSN of partner LoyaltyService.ResultOfBatch result = svc.OpenSaleTransactionBatch(request); if (result.FaultCode == 0) { //Request succeeded } else { //Request failed throw new Exception(result.FaultDescription); } }