Adapter initialization: Zebu
The following code initializes ZebuMessageAdapter and adds it to Connector.
var messageAdapter = new ZebuMessageAdapter(Connector.TransactionIdGenerator)
{
Key = "<key>".ToSecureString(),
Secret = "<secret>".ToSecureString(),
AuthorizationCode = "<code>".ToSecureString(),
UserId = "<id>",
};
Connector.Adapter.InnerAdapters.Add(messageAdapter);
Set the credentials and any other required properties described on the Connector configuration page.