Questions tagged [stripe-api]

55 questions
3
votes
2 answers

Converting Stripe API syntax to Google Apps Script

This SO answer correctly explains that since the require Node/JS library is not supported by Google Apps Script, the following code changes must be made to get Stripe to work properly in a GAS project: from const stripe =…
3
votes
1 answer

Issues with changin/updating stripe subscription (django)

Currently have this code for one of the subscriptions that I have available on my site. The code checks to see if the user has a plan already, if they don't, the else statement is run (works fine) and if they do, the code for updating their current…
Marko
  • 125
  • 9
2
votes
1 answer

STRIPE integration

I'm using the REST Debugger as a first try at working with the stripe API. I can login and perform some basic creation and listing tasks. When creating a customer the (postal) address elements are described as parameters that are of type…
2
votes
1 answer

getting No such PaymentMethod: error message when trying to attach paymentMethodId to customerId

new to stripe but the documentation looked pretty forward but now stock on something very rudimentary, I can see the customer created in stripe console, same as the product and the price but when I try to attach the payment method retrieved from…
nightograph
  • 1,810
  • 2
  • 27
  • 43
1
vote
1 answer

Field defines a relation with the model 'auth.User', which has been swapped out.(fields.E301)

I'm getting this error. ERRORS: subscriptions.StripeCustomer.user: (fields.E301) Field defines a relation with the model 'auth.User', which has been swapped out. HINT: Update the relation to point at 'settings.AUTH_USER_MODEL'. I'm trying to…
1
vote
1 answer

When does Stripe's invoice.paid webhook get delivered in relation to when the subscription starts?

We're currently using Subscription Schedules to help us downgrade a customer at the end of the current billing cycle. Once the customer has been downgraded, we want to call the release function to convert the Subscription Schedule back to a normal…
D. Share
  • 51
  • 5
1
vote
1 answer

Unload stripe pure from when react component unmounts

so, I want to get rid of stripe sending data from my website. What is this nonsense on every click curl 'https://m.stripe.com/6' \ -H 'authority: m.stripe.com' \ -H 'pragma: no-cache' \ -H 'cache-control: no-cache' \ -H 'user-agent:…
v78
  • 2,513
  • 14
  • 30
1
vote
2 answers

Stripe API: How do you find the exchange rate and amount in foreign currency of a cross border transfer to a Connect Account?

I'm using Stripe to process payments. I have a platform where international Connect accounts can sell items to others through my platform. My platform is USD. In this specific example, the Connect account is in CAD (Canada Dollar). When someone…
1
vote
0 answers

Stripe subscription invoice remain as open after retry with valid payment method

I'm implementing stripe subscription using stripe-php library, following this doc https://stripe.com/docs/billing/subscriptions/fixed-price Simulating customer subscription with failed payment method, stripe subscription object generated…
1
vote
0 answers

strip publishabe key on multiple projects

I just started working with stripe, and im stuck on this issue for a week now, I have obtained the live publishable key and the secret key, after I add the card details I get the error : please note: the key is also used in one of our IOS projects…
shane
  • 33
  • 1
  • 5
1
vote
0 answers

When receiving a `payout.created` Stripe webhook, what is the easiest way to determine which Stripe Connect Custom account it is for?

(Stripe api version: 2020-08-27) I am working on setting up Stripe to create payouts automatically each week to our Stripe Connect accounts with earnings. I want my own api to listen for the payout.created Stripe webhook, so I can record and track…
fronzee
  • 1,396
  • 2
  • 17
  • 30
1
vote
0 answers

Stripe client checkout & services

So I am trying to use stripe checkout to allow customers to subscribe to a web-based software service. using the nodes package "vue-stripe-checkout". However, when I try to redirect the user to the checkout it says my SKU is not valid (which I can…
Luke Pring
  • 878
  • 2
  • 10
  • 15
1
vote
3 answers

Stripe API Checkout WIth Multiple Items

I've got problem with Checkout Session method in Stripe API. When I hardcode values for price and quantity, Stripe will allow me to use multiple items in checkout, but when I try to load those values dynamically, it only lists first product in cart.…
StrahinjaL
  • 41
  • 3
1
vote
0 answers

Duplicate email entries in Stripe

I'm doing my first project and it requires Stripe for recurring/subscription payments. I'm just starting and the approach I'm taking is that once the user registers, my Register controller creates the Stripe Customer profile as soon as user is…
devjavi
  • 25
  • 6
0
votes
0 answers

Cannot read property 'stripe3DSecureResponseHandler' of undefined

I am trying to send one method response to another method, but its showing exception when I call this method (with Angular 8). My code as follows: process() { Stripe.source.create({ type: 'three_d_secure', amount: 100, …
AMAR MAGAR
  • 97
  • 1
  • 11
1
2 3 4