Libraries
C# Libraries
Accepting credit card payments with C#
The following example uses PinPayments Library by Christian Payne:
PinService ps = new PinService("your-secret-api-key");
ps.Charge(new PostCharge {
Email = "customer@email.com",
Description = "Widgets",
Amount = 4999,
Currency = "USD",
CardToken = "card_nytGw7koRg23EEp9NTmz9w",
IPAddress = "1.2.3.4"
});