My Project
|
The Electronic Bill Presentment and Payments (EBPP) API enables businesses to accept bank account, credit and debit card payment
Download the library (latest version is recommended) from "here" Then include the DLL (under the bin
folder) in the C# project, and use the namespaces: ```csharp using Orbipay.PaymentsApi.Client; using Orbipay.PaymentsApi.Client.Wrappers; ```
Enable the logging to have better insight into what the library is doing. To enable logs [follow]https://cmatskas.com/an-introduction-to-common-logging-api-2/.
This library provides a way to configure http_timeout through environment variable.
Below is the example to set timeout using environment variable
```csharp System.Environment.SetEnvironmentVariable("ORBIPAY_PAYMENTS_API_TIMEOUT_SECONDS", "60"); ```