0

How do I include line items in the order summary of PayPal Express Checkout?

I'm using ASP.Net and C# and I've tried adding this to the paypalfunctions.cs file that the PayPal Integration Wizard (https://www.paypal-labs.com/integrationwizard/) generates, but the line item doesn't show up in the "Your Order Summary" page:

encoder["L_PAYMENTREQUEST_0_NAME0"] = "My Line Item";
encoder["L_PAYMENTREQUEST_0_QTY0"] = "1";
aleroot
  • 71,077
  • 30
  • 176
  • 213
user1513030
  • 67
  • 1
  • 6
  • The parameter names are correct. Try to change the theme in the PayPal account configuration that uses on the order summary page. – Madman Jul 12 '12 at 11:42

1 Answers1

1

This post helped solve the problem for me: Problems with Paypal SetExpressCheckout when using NVP API in ASP.net

I was also using code generated by the PayPal Wizard that sets the version to 2.3 elsewhere in the code.

Community
  • 1
  • 1
user1513030
  • 67
  • 1
  • 6