Skip to content

Charge_Link

Craig Christenson edited this page Oct 26, 2012 · 2 revisions

To pass a sale to your custom checkout page, you can use one of the methods provided in the TwocheckoutCharge class. This class provides you with several methods to pass the sale and the buyer to 2Checkout.

##Method

###link

Creates a purchase query string to pass the sale and the buyer to 2Checkout.

####Arguments

####Returns

Purchase query string from the parameters passed in.

####Example Usage:

var dictionary = new Dictionary<string, string>();
dictionary.Add("sid", "1817037");
dictionary.Add("mode", "2CO");
dictionary.Add("li_0_type", "product");
dictionary.Add("li_0_name", "Example Product");
dictionary.Add("li_0_price", "1.00");

String PaymentForm = TwocheckoutCharge.Link(dictionary);

####Example Response:

https://www.2checkout.com/checkout/spurchase?sid=1817037&mode=2CO&li_0_type=product&li_0_name=Example Product&li_0_price=1.00
Clone this wiki locally