Questions tagged [braintree-sandbox]

Use this tag only for issues related to the Braintree sand-boxing system for other question use the generic braintree tag.

Sandbox environment for Braintree payment system that allows you to get a feel for the Braintree experience before applying for a merchant account or going to production.

171 questions
6
votes
1 answer

What is default api rate limit of braintree?

What is default api rate limit of brain tree? Because after very requests in a time period I am getting 403(Too many request) exception.
Nimish
  • 61
  • 2
5
votes
1 answer

CSP problem execute inline script Paypal button

Im using the braintree javascript v3 sdk and using a paypal checkout button for my shop. Code example: braintree.client.create({ authorization: 'sandbox_xxxx' }, function(err, clientInstance) { if (err) { console.log(err); …
5
votes
0 answers

How to use SEPA in braintree without asking for paypal account?

I integrated Braintree local payment methods in my project. One of the method is SEPA. While clicking on the SEPA payment button, Braintree gateway is redirecting me to the SEPA payment page. Where a user has to enter bank details. Here on this…
5
votes
1 answer

Send money from Braintree account to customers account

I 'm stuck with a problem of transferring money from my merchant account to my customers bank account. So I just queried and googled a lot to get a appropriate solution and i just recently met with a comment that "Braintree only help to accept…
Vishnu S Babu
  • 1,570
  • 1
  • 12
  • 23
5
votes
0 answers

Braintree failed subscription payments retry when updating payment method proration turned on

Can someone please help. Braintree documentation states: If a payment for a subscription fails, the subscription status will change to Past Due. You can manually retry the charge, or you can set up logic in the Control Panel to automatically retry a…
4
votes
2 answers

Sudden Failure Requests on Braintree Sandbox API: 'Billing state format is invalid'

We're running a UK Magento store hooked up to Braintree. All has been running smoothly for months, then suddenly, we are no longer able to complete an order on any of our staging or local test environments which are hooked up to Braintree…
karatecode
  • 574
  • 6
  • 21
4
votes
0 answers

How do you set up your client on Braintree

I am trying to create my client but am confused on what to do with all the javascript code which is being given to me. I want to create a Drop-in UI. I have successfully been able to generate a client token by using $clientToken =…
Mark
  • 41
  • 2
4
votes
0 answers

Getting declined (2046: Transaction Refused) from Paypal Sandbox transaction

I'm using Braintree SDK in .NET. Implemented the SDK and followed the documentation. Created Sandbox Merchant Account Created Sandbox Personal Account I'm using the Access Token for the transaction. Please refer the following code…
4
votes
1 answer

Braintree payments - processor declined(2409) error for sandbox transaction

I am trying to test out the Braintree Payments sandbox environment and it is working fine for some payments but not all. In some payments I am seeing the transaction in Braintree but it has an error processor declined(2409) According to Braintree's…
Paddy Hallihan
  • 1,624
  • 3
  • 27
  • 76
4
votes
2 answers

Braintree\Configuration::merchantId needs to be set (or accessToken needs to be passed to Braintree\Gateway)

Now I got Error Uncaught exception 'Braintree\Exception\Configuration' with message 'Braintree\Configuration::merchantId needs to be set (or accessToken needs to be passed to Braintree\Gateway). Question is that if my merchant ID is not how its…
Vicky Gill
  • 714
  • 1
  • 7
  • 21
4
votes
1 answer

Braintree SDK SSLCertificateError on AppEngine local dev server

The use of Braintree SDK under my local dev_appserver.py is returning following error on braintree.ClientToken.generate(): SSLError: SSLCertificateError: Invalid and/or missing SSL certificate for URL: …
marcoseu
  • 3,892
  • 2
  • 16
  • 35
4
votes
1 answer

Is this the right way to create a subscription for Braintree in Python using the API

In an effort to bring some clarity, I'm asking this question here and sharing what I've learned so far. First, if you want a simple, easy to develop transaction system, Braintree is it. Really easy, and plays very nicely with Django. However, the…
Dave Merwin
  • 1,382
  • 2
  • 22
  • 44
4
votes
2 answers

Braintree Drop-In in iOS Swift: Where to get variable PaymentMethodNonce:

I have been following the instructions here https://developers.braintreepayments.com/start/hello-client/ios/v4 to integrate a drop-in payment form with braintree in iOS Swift. My code looks as follows, which, as far as I can tell, matches the…
AJGronevelt
  • 551
  • 1
  • 6
  • 22
4
votes
1 answer

Braintree Sandbox Test Transaction settle() returns transaction status SETTLING instead of SETTLED

I'm following documentation for testing Braintree settlement status: https://developers.braintreepayments.com/reference/general/testing/php#settlement-status Doc says: $result =…
Petr Urban
  • 298
  • 2
  • 13
3
votes
1 answer

Not all braintree HostedFields methods available for typescript?

I'm using Braintree Sandbox in my ReactJs project with typescript. According to Braintree Docs for focus, a field can be focused using the .focus() method. hostedFieldsInstance.focus('number', function (focusErr) { if (focusErr) { …
1
2 3
11 12