Commission Check Preview
Overview
A CSS-styled commission check that presents a customer's current commission amount and details on top of an image of a check.
Namespaces
This sample requires the following namespaces:
using ExigoWebService;
Exigo API Authentication
This sample accesses the web service using the ExigoApi object:
public ExigoApi Exigo { get { return new ExigoApi { ApiAuthenticationValue = new ApiAuthentication { LoginName = exigoAPILoginName, Password = exigoAPIPassword, Company = exigoAPICompany } }; } }
Fetching Real-Time Commissions
To fetch the customer's real-time commissions, we use the web service's GetRealTimeCommissions method.
return Exigo.GetRealTimeCommissions(new GetRealTimeCommissionsRequest { CustomerID = customerID }).Commissions;