Example #1
0
        /// <summary>
        /// Get details for all payment profiles
        /// </summary>
        /// <returns>List of payment profile info</returns>
        static public PAYNLSDK.API.PaymentProfile.GetAll.Response GetAll(string apiToken = null, string serviceId = null)
        {
            PaymentProfileGetAll request = new PaymentProfileGetAll();

            request.SetApiToken(apiToken);
            request.SetServiceId(serviceId);
            Client c = new Client("", "");

            c.PerformRequest(request);
            return(request.Response);
        }