Adapter initialization: Rupeezy
The following code initializes RupeezyMessageAdapter and adds it to Connector.
var messageAdapter = new RupeezyMessageAdapter(Connector.TransactionIdGenerator)
{
ApplicationId = "<id>",
ApiKey = "<key>".ToSecureString(),
AuthCode = "<code>".ToSecureString(),
Token = "<token>".ToSecureString(),
};
Connector.Adapter.InnerAdapters.Add(messageAdapter);
Set the credentials and any other required properties described on the Connector configuration page.