All Questions
4 questions
1
vote
1
answer
208
views
Android-Stripe add missing parameters while account creating
I was trying to implemented stripe payment gateway. Every thing is going fine. I was able to create connected account for the user in my stripe dashboard, but the problem is I'm missing following ...
1
vote
1
answer
130
views
Is there any method or parameter to get the invalid/stop card information from stripe api I get only expiry month/year from stripe
Is there any method or parameter from stripe where I get the information every time when I get card details of the customer to identify this card is valid/Stop or not because in my case user added his ...
0
votes
1
answer
64
views
Stripe v9 changes -- metadata
The new stripe-java v9 has this added functionality:
ChargeCreateParams typedParams = ChargeCreateParams.builder()
.setAmount(100L)
.setCurrency("usd")
.setSource("card_123")
...
0
votes
1
answer
304
views
Capture API request-response by 3rd Party libraries like Stripe
This might not even exist but I want to know if anyone is able to capture API requests by services like Stripe etc.
For example, if I use Charge.create(params) from here create a Charge, is there ...