Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error code : 11581 - Profile description is invalid in paypal

Tags:

profile

paypal

7 days ago, I have created a sandbox merchant account and make all the payment into that account. I have created Recurring payment. It was successfully create the Recurring profile.

Some days later when I execute the same code its throws an error "Profile description is invalid". The error code of the error is 11581.

Please help me. I want to solve the problem as soon as possible

Thank you

like image 960
user2853936 Avatar asked Nov 26 '14 12:11

user2853936


2 Answers

Profile description length is 127 single-byte alphanumeric characters. This might be the problem

DESC

(Required) Description of the recurring payment.

Note You must ensure that this field matches the corresponding billing agreement description included in the SetExpressCheckout request.

Character length and limitations: 127 single-byte alphanumeric characters

Here is the Reference

Edit : From comment below -> Also check for line breaks and double spaces Thanks @chim

like image 158
Mehmet Eren Yener Avatar answered Oct 24 '22 03:10

Mehmet Eren Yener


The L_BILLINGAGREEMENTDESCRIPTION0 in SetExpressCheckout it has to be the same of DESC in CreateRecurringPaymentsProfile

like image 2
Manpreet Kumar Avatar answered Oct 24 '22 03:10

Manpreet Kumar