2020年12月19日星期六

paypal api how set what will appear on credit card or bank statement

The question is about paypal API create button: can we specify what will appear in the client credit card statement?

To be more precise : when the client will check his card statement, he will see PAYPAL.... after the PAYPAL...: with the paypal.Buttons, can we choose what will be shown like the name of the product or invoice number?

https://developer.paypal.com/docs/subscriptions/integrate/

createSubscription or createOrder....

<script src="https://www.paypal.com/sdk/js?client-id=SB_CLIENT_ID&vault=true"> </script>    <div id="paypal-button-container"></div>  paypal.Buttons({    createSubscription: function(data, actions) {      return actions.subscription.create({        'plan_id': 'P-....'      });    },    onApprove: function(data, actions) {      alert('You have successfully created subscription ' + data.subscriptionID);    }  }).render('#paypal-button-container');  

if the client pays with a credit card or a bank account in his paypal account, is there a way to specify what will appear in the client credit card or bank statement?

https://stackoverflow.com/questions/65376984/paypal-api-how-set-what-will-appear-on-credit-card-or-bank-statement December 20, 2020 at 12:44PM

没有评论:

发表评论