Configuration
Before using TePay, configure the API credentials:
var config = new TePayConfig
{
BaseUrl = "https://api.tbcbank.ge/", // default
Version = "v1", // default
ApiKey = "your-api-key",
ClientId = "your-client-id",
ClientSecret = "your-client-secret"
};
Instantiate TePayService
with the configuration
ITePayService tePayService = new TePayService(config);