Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to add item details to show on the paypal invoice but nothing appears. I use SetPaymentOptions with the following values:

"payKey" => "$payKey",
"receiverOptions(0).customId" => "11",
"receiverOptions(0).receiver.email" => "email@paypal.com",
"receiverOptions(0).description" => "Invoice Title",
"receiverOptions(0).invoiceData.item(0).name" => "Item name",
"receiverOptions(0).invoiceData.item(0).itemCount" => "1.0",
"receiverOptions(0).invoiceData.item(0).itemPrice" => "20.0",
"receiverOptions(0).invoiceData.item(0).price" => "20.0",
"receiverOptions(0).invoiceData.item(0).identifier" => "111",
"receiverOptions(0).invoiceData.totalTax" => "0.0",
"requestEnvelope.errorLanguage" => "en_US",
"requestEnvelope.detailLevel" => "ReturnAll"

The code is in PHP and I'm using embedded payments. Does any have any idea why none of the details show on the invoice except for info passed in the paykey request? Thanks...

share|improve this question
I'm having the same problem, I'd like invoice data to show on the payment authorization page, but I can't find a setting for doing so – lencinhaus Oct 11 '11 at 8:38

1 Answer

itemCount should be an integer:

"receiverOptions(0).invoiceData.item(0).itemCount" => "1",

With that change (and a valid receiver.email) the SetPaymentOptions call is successful.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.