Questions tagged [braintree-data]
21 questions
2
votes
1 answer
Braintree Subscription Transactions, how to detect if billing was skipped?
I am using braintree java sdk for subscriptions.
I have a subscription object, I would like to get a list of all transactions for this subscription.
I know there is a method named getTransactions() but this does not return all transactions that…

Robert Ellam
- 71
- 1
1
vote
0 answers
How to get Device Data from Braintree gateway in Flutter Android Side?
I need Device Data for Fraud Detection while sending Credit Card payment method bounce to my server but I don't find any other way for getting Device Data.
Im not using dropin for credit card payment method bounce, I'm using flutter_braintree:…

SafYian Mughal
- 11
- 1
1
vote
2 answers
Android resource linking failed while using braintree library
I'm currently integrating Braintree in our project. But At the starting point, I'll use Braintree SDK in our project file the show Android resource linking error.
error: resource android:attr/fontVariationSettings not found.
error: resource…
user10025786
1
vote
1 answer
Is it ok to pass payment_method_tokens from client to server?
I am currently using the braintree server package (Node.js) and am working towards implementing subscriptions.
As an intermediate step, I'm managing a list of payment methods for each customer, which is found inside a customer object:…

wheresmycookie
- 683
- 3
- 16
- 39
1
vote
1 answer
How to update existing Paypal account in Braintree?
I want to update existing paypalAccount of a Vault user every time she makes a purchase using paypal checkout.
According to the documentation, I can only update creditCards using paymentMethodNonce.
Another piece of documentation shows how to…

novasaint
- 700
- 8
- 13
1
vote
1 answer
Braintree Java Implementation of Validation Error codes creating customer
I am using braintree with java,
While creating the customer profile, I am getting the error messages like this
try{
CustomerRequest request = new CustomerRequest()
.firstName("Kim")
…

Kamini
- 690
- 2
- 13
- 36
0
votes
0 answers
Braintree not allow adding of a 2nd test card against the same account when failOnDuplicatePaymentMethod is passed in token generation
I'm using braintree to test card validations and not allow any duplicate card entries and everything works fine so far when i use FailOnDuplicatePaymentMethod!
The issue I am facing is:
let suppose you have 2 test cards,
A. VISA card
B. Master Card…

Waleed J.
- 47
- 1
- 6
0
votes
0 answers
invalid keys: card Number, cvv, expiration Month, expiration Year in braintree method
I'm trying to create a card token by using Braintree with language of PHP
$gateway = new Braintree\Gateway([
'environment' => 'sandbox',
'merchantId' => 'your_merchantId',
'publicKey' => 'publicKey',
'privateKey' =>…

Akshay Jogi
- 1
- 1
0
votes
0 answers
Angular Material Tree doesn't render data
I make a change in one of the branches in the tree and want to see the change immediately. Just like in the example: Stackblitz
My problem is that if I go exactly according to the example, I try in the constructor to access the function whose access…

Naor Yael
- 69
- 4
0
votes
1 answer
Braintree and Node.js Creating Sub Merchant Error Not Authorized
I am using the node.js braintree sdk to try creating sub merchant accounts. However, it has been unsuccessful so far and I keep getting a not authorized error but I don't know how to pass the token in this call.
Here's the gateway I am using:
//…

rom
- 666
- 2
- 9
- 31
0
votes
1 answer
WebhookNotification, BraintreeGateway in sandbox mode
On Braintree sandbox panel, under settings button have Api page and inside this page have webhooks tab. I create a new webhook with URL that created for handle webhook.
https://myexamplewebsite.tld/webhook
On webhook, I select all notifications…

devugur
- 1,339
- 1
- 19
- 25
0
votes
3 answers
Cannot convert type 'Void' to 'String' in coercion in Swift
So i'm using some libraries and one of the methods, has supposedly return value
let data2 = dataCollector.collectCardFraudData({ ( str:String) in })
But the problem is that the return value is of void type but i could see the value present in it,…

Sam
- 67
- 8
0
votes
1 answer
How can I submit a form with payload.nonce in client sdk? I'm using an example given by the Braintree?
I'm stuck at this point now. I never used braintree API before. The problem is when I hit the submit button it is showing alert box with my payment_method_nonce.
It means I'm successfully getting the payment_method_nonce from the client, But the…

Danish Tahir
- 107
- 11
0
votes
1 answer
Braintree payment validation
Currently i am using braintree hosted fields for a project.Its integrated successfully. but what if the user remove the card details after recieving the payment method nonce token. is there any callback for validate in such a case ?
I tried onError…

sarath s rajendran
- 398
- 4
- 19
0
votes
1 answer
How do I onboard a submerchant in Braintree? [PHP SDK]
In PHP, I am developing an application that is going to use the Braintree Marketplace functionality - for users within my platform to be able to handle escrow transactions for projects they post. I understand the code on how to do actual…

Robert Dewitt
- 324
- 5
- 17