#dev-help
1 messages · Page 51 of 1
"PREVIEW FEATURE". Do we implement this feature or is it in future usage?
hey team stripe quick question
Hey there,
Just have a question regarding BECS payment in stripe. By any chance I can set up BECS payment form from stripe itself without coding. I did tried the prebuild BECS payment method in stripe but every time I clicked on it, it will just route me on the BECS Set up documentation.
Does buy now pay later support Setup Intents? I'm trying to see if I can have a payment authorized and only capture a deposit at first, then receive the rest of the BNPL balance after service is rendered.
Someone is using my identity to sell cars
@golden cosmos promptPay have two emails,where to set the default value,or why two email?
Hello everyone, I'm using the subscriptions API and I have a question.
Within my platform, there's a referral system, and I'd like the user to start the checkout with the promotional code pre-filled if they've been referred by someone.
Is there any field in the subscription API where I can set the promotional code when creating the checkoutURLsession?
So i currently have a Stripe account that has an email associated with it but it says on recovery that the account does not sign in with a Password and the only way to sign in is with a Two-Factor code with my OLD phone number which is no longer active. When I try to remove the two factor from the account, it says the account does not use any two-factor for sign in?
So my question is, since I am only able to login via with my Email and then with a 6 digit code from my old phone number, how am I able to get back into my account?
Hi, I have a problem with success URL, sometime it call back to the url sometime it wont
tamako9910
Hi! I need help with my purchase using Stripe as payment processor. Payment is not going through, it says "Payment Attempt Failed"
Hello, is it possible to end trial without creating invoice immediately?
is there a way to get the supported payment methods for a connected account
can you reopen?
With Issuing when I look at TopUp events I'm able to see a source id with prefix "src_". When I use this source id in calls to retrieve the source details from the Sources api (GET /v1/sources/:id) I get an error that there is no source with the specified id. Can someone assist?
hii stripe
Hello, may I ask what sub account is the default for manual transfer without setting sub accounts
hi currently we are using azure how to enable webhook in azure
Hello Stripe team
Hey! I have a query regarding recurring payment! I was wondereing if anyone could share their knowlege on my query!
Hi Team,
I want to implement subscription using checkout session API. I have attached my code below. How can I cancel subscription ?
what I need to pass for that?
const session = await stripeClient.checkout.sessions.create({
customer: customer.id,
payment_method_types: ["card"],
subscription_data: {
trial_end: startDateTimestamp
},
line_items: responses,
mode: "subscription",
success_url: ${baseUrl}/payment/success?type=subscription&session_id={CHECKOUT_SESSION_ID}&customerID=${customer.id},
cancel_url: ${baseUrl}/payment/cancel?session_id={CHECKOUT_SESSION_ID},
});
const redirectUrl = session.url?.replace(
"{CHECKOUT_SESSION_ID}",
session.id
);
res.status(200).json({ url: redirectUrl });
i want to know difference between the this properties batteryLevel
batteryPercentage
batteryStatus
which i am receving in M2 reader in ios
Hi everyone.
I create a paymentIntent with option P24 and want my customer to see in payment title anything else then payment ID ( for example the name of the company). Is it possible at all?
Hey guys - i need to confirm that BECS is set up properly by making a test payment with the test bank account details, but it wont show up as a payment method in Test Mode.. Would someone be able to shed a light on if im missing something? 🙂 Also, i dont have access to the server on my end so having to set it all up with the no-code options
Hey is there any way to customise the stripe billing portal in such a way that user will not been able to downgrade his plan, only he is able to upgrade his plan there?
Hello,
I am back to using stripes, before i was building a custom page using the Card Element. I see that there is a new Payment Element now. I also see that setting up the new Payment Element requires a client_secret. I would like my form to save payments for later, so I have to get a setupIntent client_secret but I have read that we do not want to have too many setupIntents lying around. So imagine the case where my user goes to the "Add Payment Method" page, I create a setupIntent on the server and use that to show the Payment Element, and then they don't do anything and leave. Do I just have to listen to a webhook and delete the lingering setupIntents? That is what the docs seem to suggest (https://stripe.com/docs/payments/save-and-reuse?platform=web&ui=elements) and I feel like the way settign up the Card Element was much easier because I only create the setupintent once the submit button was pressed, ensuring the setupIntent would be used when the frontend then called confirmCardSetup with the returned client_secret.
Thanks in advance
Hello, Is there a way to implement something like payment / checkout without card information and does not have any fee to be paid by the user on Live environment thru Stripe?
Hello, I have a question. I already add cors in my cloud functions.
const cors = require('cors')({ origin: true });
exports.createPaymentIntent = functions.https.onCall((data, context) => {
return cors(req, res, async () => {
const { items } = data;
const calculateOrderAmount = (items) => {
// Replace this constant with a calculation of the order's amount
// Calculate the order total on the server to prevent
// people from directly manipulating the amount on the client
return 1400;
};
const paymentIntent = await stripe.paymentIntents.create({
amount: calculateOrderAmount(items),
currency: "aud",
automatic_payment_methods: {
enabled: true,
},
});
res.send({
clientSecret: paymentIntent.client_secret,
});
});
});
Why it still give me this error? How to fix this issue?
Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.
which webhook trigger if my existing plan end and after i renew with same plan
hi all, does stripe checkout ui show prorated costs?
and what happens in stripe checkout if a user has a monthly subscription, but would like to upgrade to annual subscription?
Hello, can how can I prefill user's billing country when creation checkout session?
https://stripe.com/docs/api/checkout/sessions/create
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Hello. What is the best process for creating invoices for charges billed to my connect accounts? How to manage refunds or chargebacks in these invoices ? Also how to help my connected accounts to link payouts to the products to my plateforme ?
hey, where can I configure invoicing emails, retries, reminders and receipts when I set auto_advance to true? (I see that they have a gear that means configurable in your settings, but am not sure where are these settings)
Hi, could you please explain for -> https://stripe.com/docs/identity/access-verification-results
Document ID number - number of provided document
ID number - it is the social security number full ssn?
How can I implement a Node.js backend to charge a customer for miscellaneous charges? I have the customer's email, name, and the corresponding fees. The user object has already been created on stripe, I would like to enable the customer to make a "tap to pay (iphone or android)" option for credit card information capture, and then utilize the Node.js backend to create a payment intent and process the charge for the customer.
not too clear on implementation, please help
sample code is appreciated, especially on the tap to pay with (iphone or android) portion
for subscriptions how to use checkout sessions in stripe
this "starting_after" can't be a number? i want to make a invoice table with "load more", so i would need to make a request that returns the first 10 invoices, than the next 20, etc., so like a from 0 to 10, from 10 to 20 using starting_after and limit
Hi everyone I am using nextjs I would like to create in my site, a component that allows me to insert stripe card and make a payment of an amount that I decide.
Also it has to be connected to an affiliate via connect do you have any docs to send me?
How can I setup customer billing portal session in Bubble API connector? It is asking me some header is missing.
Hello,
- Is it possible to delete subscriptions that existed two months ago, for the month of May?
- Is it possible to change the "subscription end" date to the "subscription start" date for subscribers who were active two months ago and are no longer active today? So that in the end, the subscription will not be considered by us as a subscription that was active.
Hi, when retrieving a customer using curl, how can I expand the sources.data array?
Hi team,
I am using a subscription mode payment in stripe.
So far so good, I manage to get the payment (I use a checkout session for the client to pay) so this is good. However, I was wondering what would happen every month (since it is a month recurring subscription). Especially, would my client's card be debited every month?
In that case, could you tell me exactly what webhooks I would receive on my server ? So far, I only looked at invoice.paid event to check if the first payment was done, but if it is a recurring payment, I need to make sure that each month, the payment is done too so I was wondering about what webhook I could use to update my database.
Hello, how can an express account see the taxes in his transactions? Right now it shows as the total amount
Hi ! I need help with reader server-side integration. I'm in France and my reader location is correctly set to France but when I make processPaymentIntent on my reader I get this error message : The server-driven integration is currently only available in certain countries. For more information, see https://stripe.com/docs/terminal/choosing-reader-and-integration#availability.
I use BBPOS WISEPOS_E reader
Hey is it possible to remove this "Pay online" link from the invoice via the API?
Hi there, I'm looking at integrating customer present payments for a "connected account" using "stripe-java" library on the server side and a "BBPOS Wisepos E" device, however I'm running into an error when attempting to call Reader.create() against an existing location :
"No such location: 'tml_E9m6XQuWW88ZyO'; code: resource_missing; request-id: req_aGTGQR6bQLm0be"
do I need to re-create the location against the connected account specifically? and if so, is there a way to do this through the current Stripe dashboard? (currently I can only see the option to create a location when I'm looking at the "main" account not the "connected" one)
Hi, can we integrate Prompt Pay from Thailand for the mobile app?
Someone is creating many accounts, anyway i can block him?
Hi team
Hope all is well.
- I am busy with a Market Place integration. Is there a way to use the API in which to schedule a payout while creating a payment session or after a successful payment?
- If a refund needs to occur and a payout already happened, how does that work? How do we get the money back to issue the refund?
If I want the payment to be available from all countries (in other words that all countries are allowed) can I just delete this line of code
Hey Team!
Did anything change recently regarding Apple Pay domain verification in test mode?
I'm pretty sure Apple Pay worked for me on your documentation page before (please see the screenshot), but now it is failing because of domain verification.
The same goes for our dev account. I used Apple Pay in test mode on it a week or two ago, but today it did not work, and I had to add the test domain to our dev account to fix it.
Thanks!
how to cancel software update process in M2 in ios
How can I list the payout of a connect account ?
Hello! Help me please. Where can I find checkout session id on the stripe dashboard? Where can I see logs for redirects? I didn't receive a checkout_session_id in the redirect link, but it was defined in settings.
i need get subscription renewal and cancel plan , payment success event
Hi all, me and my team are having trouble with implementing 3DS authentication into our code and stripe account, payment has been failing and user are unable to subscribe to our channels, we also use laravel chashier, can someone help with matter or guide us on some steps they took when facing this issue, would be very much appreciated.
Hi team, Will cancel subscription event will trigger customer.subscription.updated?
I use payment links. I added a GET parameter to the redirect link. And now it's looking as
https://mysite.com/thank-you/?session_id={CHECKOUT_SESSION_ID}
Why does it not send this parameter?
Hello, What causes the following response: Received unknown parameter: payment_method_option[card][moto].
This parameter used to work before but Stripe is rejecting this value now. Could this be account configuration related?
Error: Parsing error: Unexpected token (14:42) I get this error on Vercel when deploying my web shop, and here is the code where the error is
We have seen the following message in the 'Risk Insights' section
Integration improvement available
This transaction is missing customer name, which affects fraud detection.
We are using the PaymentIntents API to prepare the payment (https://stripe.com/docs/api/payment_intents/create)
I can't see where we are supposed to put the customer name.
I see that we can create a Stripe Customer and then submit the customer_id (and we do this for our registered users), but how should we supply the name when it is a 'guest' checkout and we don't have a logged in user?
Thanks for your help 🙂
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Hello! Very quick question about the radar.early_fraud_warning.created event: is it only available with Radar for Fraud Teams or is it available to all users?
hii stripe team
Hi
is it possible to make a refund of the money deposited using ReceivedCredit ?
https://stripe.com/docs/api/treasury/received_credits/object
Hey, sorry if this is a pretty obvious question, but is it possible to have multiple subscription tiers (yearly, 6month 1month) all on the stripe billing portal? My ideal flow would be something along the lines of:
- Select button to subscribe
- User is redirected to stripe
- Selection of subscription occures here
- User pays, and is redirected back to success page
getting invalid_request_error - billing_cycle_anchor
even i set the timestamp value 1692057600
Hi, I've got a React Native project and am using the following code:
// Wallet Pay
(async function () {
setisWalletPaySupported(
await isPlatformPaySupported({googlePay: {testEnv: true}}),
);
console.log(isWalletPaySupported);
})();
To determine whether wallet payments are supported. iOS works perfectly, Apple Pay appears and functions.
However, when using Google Pay:
<PlatformPayButton
onPress={() => fetchPaymentUrl(true)}
type={PlatformPay.PaymentType.Checkout}
appearance={PlatformPay.ButtonStyle.Automatic}
borderRadius={4}
style={{
width: '100%',
height: 50,
}}
/>
The Google Pay button fails to appear. The app is registered with Google for Google Pay, has the AndroidManifest line, has Google Play services installed in app/build.gradle
implementation("com.google.android.gms:play-services-wallet:19.2.0")
The signed in Google user has payment methods too.
I'm lost as to why it's not appearing. We are already using Google Pay within the application with another payment provider.
Is there any way I can restrict the standard connected account so it has permissions similiar to express account? 🙂 It seems like I can only manage his payouts right now
Morning!
I have a problem. I'm trying triggering the events from a succeed checkout session locally. Well, once all the events arrive to my webhook is very confusing, I'm trying to debuging, but the code flow is bouncing randomly between events back and forth. Can someone give me a hand? I'm using .Net.
Afternoon, quick technical question, if my client has created a manual payout and has then run an export of the transactions within that payout, when I add metadata to one of the transactions after the fact and re-run the export, the metadata I've added is not included. Is this because the export data has been cached / indexed?
Hi, is there an api to get the MRR for a specific product within your stripe account?
Hellloooooo!
What do I have?
A form, a redirect to a checkout page, a webhook, that listens with a switch and a case 'payment_intent.succeeded':, as shown in the docs. It's working.
Current case
When 'payment_intent.succeeded' a post request is being made and no values are being sent to the db. The reason for this is, all the inputted values are being cleared when a redirect to the Checkout page is made.
A 'sort of' solution
A solution could be using the card component so I never leave the page and the inputted form values aren't being cleared.
Ideal case
That I can make use of the Checkout page with the form values not being cleared after the 'payment_intent.succeeded'.
Question
Is there a way I can or keep these form values or take them with me or something, so they aren't being cleared on the redirect of the Stripe checkout page? I have seen a lot of website's that do use this exact method with a form and the Stripe checkout page.
Thank you in advance.
Best regards.
Paddy
Hi, we are implemented sepa debit with payment intent api to collect debits. All the required data we collect offline (also signing the mandate offline). We have a few problems with that and Stripe Support was not yet helpful. As the answers in this dev channel are way better than the answers I usually get from support I would like to try: We need to create each month around 1200 sepa debits. In test mode that works fine, but in live mode we are able to create 15 debits and all following debits get blocked by stripe. The last payment that was successfully created today is pi_3NXegODOL8lScRUG2ZmDmKJe, the one after that (pi_3NXegPDOL8lScRUG2080RsPW) failed with the message:
There was an unexpected error while processing your request. Please contact us via https://support.stripe.com/contact if the error persists.
type: invalid_request_error
What is the reason? Fraude detection? As we manually verified the payment information and also have a signed payment mandate I wonder, How can we disable that? Or how we may unblock the payment intent?
how to make checkout for recurring subscription in stripe not for once payment
Hello, I have some cards stored as Sources. When these users create a Checkout Session to pay for a subscription, the payment method is not auto-populated. Is it possible to initialize a Checkout Session with cards of type Source? With Payment Methods, there is no issue, but in our system, we still have many Sources.
hi , in test mode i want to run again the stripe webhook with event id
how can i do it, the resend on the dashboard not forwarding it to the local cli
Hey guys, an1 managed to get Stripe Crypto on-ramp working? When I try to test, KYC is stuck. It says "verifying your identity information, can take up to 2 minutes" and is stuck there for days.
What's the best documentation to look at for building a subscriptions based system that enables multple payments types. (not low code)
Hello,
Can I ask which stripe js method should be used to handle payment intent client secrets in regards to 3DSecure methods, is this different between 3Dsecure 2 and then original?
Hi Folks, We are getting reports of firmware updates failing on WisePOS E from multiple locations. Can someone point in the right direction ?
Is this a known issue?
Hi, I wanted to ask if Custom Domains (docs: https://stripe.com/docs/payments/checkout/custom-domains) applies to the Invoice Payment page too?
If it doesn't (and we have it configured), would it be recommended to remove it as it's a paid feature?
Hi there,
Is there any API in stripe to create bulk invoices at once, it is taking longer to create multiple invoices at once.
i given same name and mail id but why its creating as new customer?
Looks like the docs for the charge payment method type doesn’t contain all the available types. https://stripe.com/docs/api/charges/object#charge_object-payment_method_details-type
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Hi there,
what is the average API response time for creating Invoice with multiple line items through API.
i notice that when I create a subscription with a promotion code that is the same price as the subscription I don't get a client secret back in that case how can i attach a payment method to the subscription?
Hello Im trying to create a Next.js App with stripe elements and in the example it tells me to create my elements provider in the root of the app but in the docs I see I should do it when I know the order amount.
Currently I have the Elements Provider on my checkout page since thats when I know the amount, but when I now want to create an order status page I cant access stripe since its not in the Elements Provider.
Any help would be appreciated
Hello, I did a refund to my guest but his card his fraudulant and has been cancel. I can't recharge him on this card... how can we get back the 500$?
Hello,
Now I want to integrate Google pay with my stripe account at my android app.
but when paying with google pay it returns This merchant is having trouble accepting your payment at the moment. Try using a different payment method
https://stripe.com/docs/terminal/payments/setup-reader/stripe-m2 need some help on this
Hello team! We are having an issue related to https://stripe.com/docs/payments/accept-a-payment-deferred and "elements.submit() must be called before stripe.confirmPayment(). Call elements.submit() as soon as your customer presses pay, prior to any asynchronous work" error. Could someone help me?
Hi can I stop a stripe payout to my account so that I can change the currency and bank account?
Hello,
Now I want to integrate Google pay with my stripe account at my android app.
but when paying with google pay it returns This merchant is having trouble accepting your payment at the moment. Try using a different payment method
That's happened when calling this
Hi , can I use ach bank without plaid?
Hello! I am currently using the Stripe Gateway through DocuSign (https://www.youtube.com/watch?v=qMA7C50hX6Q). I have integreated DocuSign Gen with Salesforce so that contracts are automatically generated in Salesforce CRM. The missing link in this flow is that customer data that is stored in Salesforce (i.e. Customer address, phone, etc.) is not integrated and sent to the Stripe account that is set up through the Stripe Gateway once payment is collected when the contract is completed by all side.
How do I integrate Stripe with Salesforce so that the customer information at the Account level (object in Salesforce) is automatically stored in the Stripe account?
FYI I am faily confident that this SFDC <> Stripe integration is not relevant to our use case (https://stripe.com/docs/billing/integrations/salesforce) and rather it is something more customized.
Thanks in advance!
Hi, we are having an issue where a customers have a subscription schedule, with the first phase is standard price but the second phase is the same price but set as free trial for a set period. This is in order to give customers a free months reward. However, someone has later then applied a coupon to the first phase through the dashboard, this removes the trial flag status and the end_date that we had set for the phase. Is this new behaviour, previously was it possible to add a coupon to a subscription schedule?
hello can we use different currency in test mode ? or only USD
Hi, I was wondering if Stripe offers a 'Pool Payment' or 'Split-Payment' option where multiple people do a payment (usually smaller amounts between €1,- and €15,-) to fullfill a goal of a certain amount of money. Once the goal has been reached the payment will be fulfilled.
Hello, if we set CaptureMethod = "automatic", and payment is successfull how long this payment will be available for cancelling?
Is it possible to create products and migrate to test mode automatically?
Hi. In my app, users add a payment method and later create a subscription via Stripe Checkout. I've noticed the checkout page doesn't always use the existing payment method, causing re-entry of payment info. How can I ensure the checkout session defaults to the existing payment method?
Hi, using PaymentIntent/SetupIntent, is there a way of doing a Direct Charge to a 3DS card and storing it for later use on the platform account, not the connected account? Looking for at maximum of a single authentication
does the Stripe Elements iframe support filling out the form using window.postMessage()?
How do I add the funds from my Issuing balance, to my standard Payments balance?
Hello,
Now I want to integrate Google pay with my stripe account at my android app.
but when paying with google pay it returns This merchant is having trouble accepting your payment at the moment. Try using a different payment method
Hi, my dispute webhook doesnt retrieve the customer as works with the checkout.session.completed webhook. can you take a look at whats wrong?
How can I change this so that I don't get a redirect?
const { error } = await stripe.confirmPayment({
elements,
confirmParams: {
// Make sure to change this page to the payment completion page
return_url: 'http://localhost:3000'
}
});
I have a question about how to retrieve Stripe Tax Invoice for direct charges done with custom accounts
Question regarding Stripe's invoice object:
I have it configured to be an automatic charge on the every xth day of the month(based on a subscription).
For the invoice object, if the charge fails, will the attempt_count = 1 & attempt_count = 2 have the same invoiceId?
Hi, if i am creating a subscription through a subscription schedule. Is there a way to have it transfer the metadata on the subscription schedule onto the actual subscription itself?
hello. I'm getting the following error when trying to make a payout for a connect account.
Cannot create payouts: this account has requirements that need to be collected.. Please provide those fields to re-enable payouts.
we are wroking with this person to get the additional documents they need.
My question is there a way to check to see if an account is in this state though a api call to the account endpoint? is there a attribute there I can check?
(Status 400) (Request req_xIFDW1f6lz1cM4) The PaymentMethod pm_1N3ytcJZUpJ6fJ99aHqhhWAh does not belong to the Customer you supplied cus_O9cMpGbKTZkC3R. Please use this PaymentMethod with the Customer that it belongs to instead.
However, when I check the whole thing, I don't see the problem. According to the Stripe Dashboard, the Payment Method ID matches the Customer ID. Can you check this?
To start a referral program, I want to give a cashback and a discount. Can you advise me on the docs I should look into?
Hello, I added Google Pay payment method from dashboard and it is not appearing on Checkout session page. Here is the link for checkout session https://checkout.stripe.com/c/pay/cs_test_b1tIJcm3WDG4y41481QUGEXyBhMJeJywWQ2P3SPsCK6tfCZMCBfR0JK5tb#fidkdWxOYHwnPyd1blpxYHZxWjA0SzV1UTJGb3JoQXN0VHR0bGF0d3NAUXJCYGdhZz1uMHBgZ2A1RGt3V29CUENrd2B1NWh%2FY3VHRFBcXFNoUmt2TnFTYXVAaHNVN1FmV19fZzFBU2xma01MNTU0aDBUbnBwQicpJ2N3amhWYHdzYHcnP3F3cGApJ2lkfGpwcVF8dWAnPydocGlxbFpscWBoJyknYGtkZ2lgVWlkZmBtamlhYHd2Jz9xd3BgeCUl
Hey all,
Does this look OK to you?
Stripe's API server doesn't seem to be picking up body (body is empty):
let data = new URLSearchParams();
data.append('type', 'express');
fetch('https://api.stripe.com/v1/accounts', { method: 'POST', headers: { 'Accept': 'application/json', 'Content-type': 'application/x-www-form-urlencoded', 'Authorization': 'Basic ' + Buffer.from('sk_test_REDACTED:').toString('base64') }, body: data }).then(function(res) { return res.json(); }).then((json) => { callback(null, json); });
zo
Hi folks, is there a way to enable unicode support for the business_profile.url for Connect accounts? We allow our international users to use unicode characters in their custom url. However, it seems the Stripe API doesn't support that as we are receiving errors when attempting to create their Connect account via the /v1/accounts endpoint. I'm assuming only ASCII is support but thought I'd ask if there was the possible for unicode support.
url_invalid - business_profile[url]
Invalid URL: Non-ASCII characters in URLs must be percent-encoded in order for the URL to be valid.
To display Google Pay button on checkout page, I have added it via dashboard and I do not see any other configuration requirements. Am I missing something here?
Just following up to the previous thread. I have test mode request IDs that reproduce the issue. Could the thread be reopened?
Is there a way to block some funds from being paid as payout from our platform balance?
For example:
- We win a chargeback, the funds get back to us but it can take a few days before we transfer them back to the connected account. We don’t want the funds to be paid out, as we want to have them available to transfer back to the Connected account
- A user triggers a refund. The funds go to our balance then we wait for the withdrawal to settle on the user balance before refunding the customer. We don’t want the funds to be paid out, as we want to have them available for refund for when the Withdrawal has settled.
In these 2 cases, if we are at the end of the month, Stripe does a payout to our bank account which I believe can include these pending payments.
I currently use Stripe as a payment processor for my current website, but I am launching a new one. How do we implement Stripe so customers' card statement shows the new website name, not the current one? I don't have a different LLC for the new website. Do I or can I open two stripe accounts with the same LLC? Or are there options for me to have two subaccounts to process payment with two websites with two different names?
i'm creating a ticket marketplace for sporting events. i currently just use a stripe session to capture payment, but i'm immediately transferring the funds to the seller. is there a way to specify when the transfer should occur (ie day ofter the sporting event) directly in the payment_intent_data.transfer_data or do i need to separate out the charge from the transfer? ie, capture the funds on purchase, and only transfer the funds manually in a separate process after the sporting event has passed?
I want to get started with stripe but i want to make sure that you supporting this feature - we are providing a PC application for our customers the app have some subscription plans the issue is that i didnt see on the docs something that can be using with RAW credit card details or any SDK for Java Client Side (Not Android)
there is any option that i can achieve that with Stripe ?
Hey bro,
we develop our identity verification system and live, so there is problem with the web-hook sec key so that web-hook is failed and send 400 response in return. so there possiblity of that stripe can retry after some time of same web-hook payload and yes then when.
thanks in advance
Hello,
I would like to go through all my historical refunds and see which charges / checkouts were refunded by us to the user. Is there any way I can do this through the api? Secondly, is there a webhook I can listen to for whenever a checkout is refunded so that I can log that?
I need to access the list of products that were purchased. The PaymentIntent does not return the list. If I retrieve the session with ID it does not return the list of products sold. If I go onto to the dashboard for that payment, I can see the list of prodcuts so it has to be associated somehow. How can I access the list of products. via API
Hello, What is the PYR_ in refrenced to? I created a Refund call but instead of showing me an ID that starts with "RE*" it gives me "PYR_"
Bonjour, cela fait deux smaines que j'essaye de mettre paypal dans les moyens de paiement et je n'y arrive pas
Hello is there any documentation to calculate taxes by states?
clients having this error while paying
anyone plz help
this is through Fiverr Workspace Invoice
Hi Stripe team, just following up on this, using a Payment Element requires a client_secret, and I am not trying to do a network call to make a setupIntent everytime I want to show the payment methods page in my app. What is the solution here besides using Legacy Card Element? Thank you in advance!
Question! How do I prepopulate Product/Service Description for a new Stripe Account in Stripe Express onboarding?
I get this error: Invalid object param: business_profile
Node.JS code:
`var details = {
'type': 'express',
'business_profile': {
'product_description':'Operating as a person who helps people deeply relax and fall asleep.'
}
};
var formBody = [];
for (var property in details) {
var encodedKey = encodeURIComponent(property);
var encodedValue = encodeURIComponent(details[property]);
formBody.push(encodedKey + "=" + encodedValue);
}
formBody = formBody.join("&");
fetch('https://api.stripe.com/v1/accounts', {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-type': 'application/x-www-form-urlencoded',
'Authorization': 'Basic ' + Buffer.from('sk_test_REDACTED:').toString('base64')
},
body: formBody
}).then(function(res) {
return res.json();
}).then((json) => {
callback(null, json);
});`
in details I also tried putting business_profile.product_description
Hello, I am integrating Tap to Pay on Android - eveyrthing is working in debug mode with simulator, however, now I generated a release APK and side loaded the app onto a device and I am getting an error when trying to connect. Does the App have to be release on Google Play Store for Tap to Pay? Or how can I test the release version?
I have a customer from the UK that is trying to use stripe express to connect their bank account/debit card. According to them, the express user interface told them that Stripe expects a United State business. What does this mean? Do they need to have a USA-based bank to connect to Express?
Hi Stripe team, in the case of 3DS and the redirect to allow the card holder to authenticate, if we wish to find out what happened to any customer if we have record of then being redirected but no record of them getting back to our site, is that possible? In short, we're trying to rule out if the customer just did not complete the auth process OR if there was some issue after they did? Looking for any help on how we might be able to tell for sure.
Hello! I am looking at making sure a user does not try to add a card that already exists on their Stripe customer. I just want to make sure my hunch is correct. I can pass along my stripe element to stripe.createPaymentMethod() which will pass back to me a payment method object that will have a fingerPrint on it. I can then use the fingerPrint that was passed back to me to see if any existing payment methods on the customer matches that value
Hi there, I have a query regarding the possibility of holding a payment authorization using the PHP Stripe SDK for a specific desired timeline. Currently, Stripe allows only a 7-day hold with the payment intent API. However, I am looking for a solution that can fulfill the specific requirements beyond this limitation for my rooms booking website.
If I was thinking of moving from Launcpass to Whop. Can someone suggest how I do this without causing any issues?
Hello, has Stripe recently changed anything in the API related to balance transactions / charges? The system we have seems to have been malfunctioning since early April.
I believe we're expanding the charge off the payment intent, and then expanding the balance transactions from there.
Or rather just expanding the charge off the payment intent and pulling the balance transaction IDs as an array off the expanded charge.
I don't think we've changed anything but it seems to be blank now. The other fields still appear.
if for the subscription a recurring payment fails then how to handle that event?what all possible solutions can be there so that i can notify the users
Hi, can someone please help me with the list of webhook events which are involved in the subscription flows. Is there any diagram which can show me the lifecycle of events for the subscription. I need to implement the events which would be raised when the subscription is successfully paid and subscribed and when the subscription is renewed automatically.
Say I am using a dedicated 3DS service like 3dsecure.io for example and looking to integrate Stripe but keep that service. How can I pass the authentication data to Stripe for processing? Does PaymentMethod accept it?
I have a Website with subscription and made in WordPress , I configured the webhook url, but the events are not coming on site
Hello, We are getting "Timed out connecting to remote host" for a lot of webhooks today. Any ongoing issues?
Whats the difference between invoice.payment_succeeded and invoice.paid events?
Hi I am creating connect standard accounts for individuals and they are created with the same "doing business as"
Is there a way to override the name / dba through the API? Thanks
https://stripe.com/docs/api/accounts/create?lang=ruby
When a vendor outside the US make a USD bank account in their own country, do they still need RSA and does the transfer still need to be made in CAD?
i need help
to connect my stripe to my shopify store, ive done it all i have LLC and EIN outside of US resident but after installing correctly i cant pay in my site with any credit card
Hello, I have an integration with Stripe in my Ruby on Rails Application to manage subscriptions. I'm using Boleto as payment method and in the page https://dashboard.stripe.com/settings/billing/automatic > Manage payments that require confirmation, I setup "Subscription status" to cancel subscription only If a recurring payment is incomplete for 15 days. Despite, the subscriptions are being canceled after 6 days of invoice. Can you help?
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Hello
How is the relationship between a Platform and Connect account established? Thanks
Hello. I'm using the PaymentElement in mode 'subscription' with currency 'usd' and I have the payment method type us_bank_account turned on in my Stripe dashboard (test environment only right now) and have it in my PaymentElement.paymentMethodTypes but it is not showing up when I test it. Is there something else I need to do to get this to show up? I am also currently in the US
hello I have a connect account that has a available to payout balance of $1,697.80 and a available soon balance of -$1,697.80. what does that mean. is there a dispute ?
When using autoReconnectOnUnexpectedDisconnect, is it possible to specify how long the reconnect should try for?
Hello guys, I have a question, I am trying to get reports of the net money that remains in the stripe account after reimbursement and commission collection from the stripe gateway, but I am clear on how to get it because all these reports make me confused, does any of you have a tutorial on how I can do this for months? thank you
Hello guys, I have a question, I am trying to get reports of the net money that remains in the stripe account after reimbursement and commission collection from the stripe gateway, but I am clear on how to get it because all these reports make me confused, does any of you have a tutorial on how I can do this for months? thank you
Hello guys, I have a question, I am trying to get reports of the net money that remains in the stripe account after reimbursement and commission collection from the stripe gateway, but I am clear on how to get it because all these reports make me confused, does any of you have a tutorial on how I can do this for months? thank you
Hello guys, I have a question, I am trying to get reports of the net money that remains in the stripe account after reimbursement and commission collection from the stripe gateway, but I am clear on how to get it because all these reports make me confused, does any of you have a tutorial on how I can do this for months? thank you
Referring to the Level 3 beta, can any merchant begin passing Level3 data to get better rates on Corporate Cards or does it require us to register for this some other way? https://stripe.com/docs/level3
Hii Team,
We have allow our customers to use stripe ACH for subscription and anything they onboard themselves and instant verification happens, they do not get charge their monthly plans. Any idea ?
Hey Folks, I am integrations developer for my company and came across a client who wants their invoices to be sent from our system. I tried to use the invoice object and copy the code from the website as it is with correct customer id. I still get below error
{
"error": {
"code": "parameter_missing",
"doc_url": "https://stripe.com/docs/error-codes/parameter-missing",
"message": "Must provide customer or from_invoice.",
"request_log_url": "https://dashboard.stripe.com/test/logs/req_i5TPoGTK9WkrY9?t=1690315623",
"type": "invalid_request_error"
}
}
horus2490
Fyi, the request body I am using is copied from the logs of my developer account on stripe
am Can someone please help me with this? I have tried many other online suggestions but still stuck on it. Thanks a lot!
How can I display the price differences to the user when they modify the item quantity in their subscription? While I'm aware of using Stripe::SubscriptionItem.update() to update the subscription, I'd like to show the user a preview of the price changes before making the actual update in Stripe.
Any reason the Stripe.Subscription object does not include the plan information. It looks like it gets sent in the response, but dont see it in the typescript object
I am currently trying to call stripe.createPaymentMethod to make sure a user is not trying to add a card that has already been added to their customer. But I am getting the error when calling this method saying To use createPaymentMethod with the Payment Element, your elements instance must be created with the paymentMethodCreation: 'manual'. I want my payment element to operate as normal. If the user does not exist in stripe: create the customer, add the payment method, and attach the subscription. Where would this paymentMethodCreation: 'manual' go and will it impact my desired flow?
Hello all. When using the firebase stripe extension, when Subscribing to a product on Firebase, it doesn't add a 'striperole' after the payment is processed even though everything else seems to work fine. This has already been described in a github issue post, so rather than being redundant, I am going to post the link.
https://github.com/stripe/stripe-firebase-extensions/issues/534
Hi, writing from WeTravel.
in this account: acct_1N5mYJASrqFiqi2j
We have weird error for this request: https://dashboard.stripe.com/logs/req_Z9Rao18l4n92ky
How we can get insufficient_funds error while attaching PaymentMethod ?
Hi! I am using stripe-go/v74 and I am trying to cancel a subscription using the SDK. The response subscription object does not have cancel_at_period_end flag set. Is there some flag I should set in the request body?
ok... so I set up a connected account... now I want to create a charge that is associated to that connected account. I am using php and this is running without error: $stripeDetails = \Stripe\Charge::create ([
"customer" => $stripeCustomerId,
"amount" => $registrationFee*100,
"currency" => "USD",
"source" => $cardId,
"description" => 'Purchase Registration Credits',
'application_fee_amount' => 1 ,
], [
"stripe_account" => 'acct_1NVM87DBqR8ZrDbk'
]);
hi guys, how we pull transcation data to foront end ?
Can we send data in JSON format to Stripe Invoice Creation API? Also is it possible to post multiple line items at once?
@midnight marlin sorry for the direct @, but wanted to ask you some questions regarding possible alternatives that stripe offers with their own API, since the extension is pretty much deprecated at this point.
When using a platform and connect accounts, do I need to setup webhook endpoint for each connect account?
Hello
Greetings, I'm new.
We are using stripe to get payouts for our podcast. now our bank needs to know from which country those payments come from.. does anyone know?
Hi stripe devs! Im using the AddressElement in react to collect billing information. Is there any way to remove the placeholder text for the phone number?
Hopefully I am in the right place! I am trying to provision a backend-only Stripe App, but it doesn't seem possible at the moment.
hi, i am looking into an approach where i can validate a saved cc in stripe (i.e. payment method) is still valid (not expires and has sufficient fund) to charge a certain amount. Here is my created pi to a known pm and i created it with an amount of $20 and it came back fine. Now if i proceed with the charge, i will call pi.confirm but if I don't proceed with the charge, i will call pi.cancel. I want to know if this $20 will show up in their credit card as a "preauthorize" before i confirm/cancel it.
Can the checkout hosted session save customer's card info or no?
Hello, I am hoping someone can give me a hand
Hii Team,
We have allow our customers to use stripe ACH for onetime charges and subscription. Anytime they onboard themselves and instant verification happens, the banks still decline charges from their account.
Error message "Payment declined by the issuing bank Tell the customer to try a different payment method, or they can contact their issuing bank for more information. Retries may succeed"
Hi folks, I have a question about managing subscriptions through Stripe even when payment is out-of-band (e.g. check payment in US). I tried creating a subscription with collection_method="send_invoice" (using the Python API bindings), then called stripe.Invoice.finalize_invoice on the resulting invoice, so that it appeared in our customer-facing UI in an open/payable state. However, within ~23 hours, it was automatically voided (I see "Source: Automatic" when looking at the event log in our Stripe Dashboard).
So.... why was it automatically voided? Is there no way to keep it open until it is paid / for longer than 23 hours?
\🤔
hey, is it possible to make a product that no coupons can be applied to?
i have 499 promotion codes and im trying to fetch them all with the promotioncodes list api but for some reason instead of making 5 calls its make 50
Idk if I’m in the right place… I need help finding out why I didn’t get paid this week
might be useful checking directly with the company involved, dont think stripe is to ask but the 1st party
Hi! I'm wondering if it is possible to create SubscriptionItems before and then passing to a Subscription vs. relying on the subscription to create the SubscriptionItems implicitly, and if so, what is the benefit of doing it that way? Can I reuse the SubscriptionItems if I update the subscription via a new phase in a schedule?
How can I resend a webhook from a live connect account?
https://dashboard.stripe.com/webhooks
- click on the webhook in question
- then click resend on the event you wish to resend
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
I see the checkout.session.completed in event but do not see any webhook attempts
Why would a webhook not be sent?
And thanks for that link
this what you need https://dashboard.stripe.com/acct_1NXsQLPvnngXo2yG/events/evt_1NXsyOPvnngXo2yGLrjmEgMs
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
@rapid tide Please use the thread created for you: https://discord.com/channels/841573134531821608/1133562941246017707
hello! I was wondering if someone could answer a few questions I have about Stripe Checkout. I'm working with Ruby on Rails as an API and React.js on the frontend, would anybody be able to help?
hello can you point me to resources on using Acodei with my app? I downloaded it in marketplace. I want to use it to deter how much a contractor has earned. My app is simular to uber
I've observed that some charges are "blocked" rather than simply declined; however they seem to look the same at the API level. Is there a way to tell them apart, such that blocked ones are removed or exempted from pointless retries? How does the dashboard differentiate declined vs blocked?
what is needed to automate taxes with stripe connect in my checkout session? this is my checkout session. session = stripe.checkout.Session.create(
success_url=settings.BASE_URL +
f'/cart/checkout/success/{order.pk}',
cancel_url=settings.BASE_URL +
f'/cart/cart_checkout/cancel/{order.pk}',
payment_method_types=['card'],
automatic_tax={
'enabled': True,
},
mode='payment',
line_items=items,
metadata={
# 'seller_amounts': seller_amounts,
'seller_amounts': json.dumps(seller_amounts),
'description': f"order id: {order.order_id}",
}
)
Hi Stripe Dev Team, we're having a very difficult time understanding the documentation for how to collect payment methods and charge payment methods. There is nothing wrong that we can detect and we are getting no error messages but support is telling us that our setup is wrong because we are not passing through the On Behalf function. Clarity would be very helpful. We are a platform. We have Connected Accounts. They are setup as Standard Accounts. We are doing Direct Charges. They are set to "Automatic Payment Methods." It is our understanding that this should work perfectly fine for processing and to our knowledge has been working fine. Could someone please help confirm that our set up is perfect?
I have activated "Ali Pay" from Dashboard. And it is saying "Pending" next to Alipay. How long I have to wait?
I can't receive 2FA code.
In the past you asked not to receive SMS messages from Stripe. Please contact support at
hey guys! i want get invoice when i update a subscription.how can i do?(I hope not through webhooks)
Hi team, we are integrating Apple Pay into our payment platform. Please advise if we can test the case payment failed with ApplePay. Many thanks!
Is there any way or any test user to test the transfer_data?
I want to check if the values are being sent correctly
So i have prepaid vanilla visa giftcard and only sometimes the purchases go through. It says that the card doesnt support this type of purchase
How do I change the transfer date to 1 time a month?
Hello,
I am getting error while using constructEvent function for webhooks.
I am getting errors like No signatures found matching the expected signature for payload. Are you passing the raw request body you received from Stripe? and Webhook payload must be provided as a string or a Buffer (https://nodejs.org/api/buffer.html) instance representing the _raw_ request body.Payload was provided as a parsed JavaScript object instead
I have referred to this documentation also https://github.com/stripe/stripe-node/issues/341.
I am using firebase functions as hosting which has express app of node
Hello can we send some metadata while capturing payment from stripe elements so we can recieve it in the webhook
Hello team, is there any way to test recurring payments in case of subscriptions? can we reduce subscriptions time to 1 hour or 1 day for testing?
Hi, need help in invoicing
hii stripe team subscription id change when plan updates ?
Hello team
I need to discuss about the business logic of my app & discuss if stripe will support the payouts.
Please connect with me a team member who can get involved in the discussion before we start our development process
Hi Team, like you have https://stripe.com/docs/connect/get-started-connect-embedded-components for letting my merchants to check on payments, do you have a similar way to let my merchants to check on identity approval status with a prebuilt UI ?
Hello, I'm trying to use stripe connect to transfer commissions, but when I pass the accountId in the transfer_data I get a StripeInvalidRequestError error: No such destination: <ACCOUNTID>
even though the destination account is linked to my account
How do I render a shipping and billing address one below the other using address element
hi,May I ask when the amount in the red box can become a withdrawable amount and what are the rules
Hello, I want to check failed subscription renewal due to low balance in card. how can I test it?
Hello. I have a question about WisePos E connection.
hello beautiful people, we enabled for Bancontact and iDeal for our subscription products, but when our customers want to change their payment methods via Stripe hosted customer portal, these options don't seem to appear for them (only Card). Is there something we can do to allow and show these 2 payment methods in our Stripe customer portal? Thank you very many in advance! 🙏
how to find SubscriptionSchedules using subscriptionId?
Hello, I have a customer who tried to create an account on Stripe. But the account is refused because the company has a "bad rating".
Hello there, hope you're all fine!
I would like to use stripe for donations but I can't find out how to (and if I can) change the wording into the PDF invoice. I'd like to remove words like "billing"
Thanks for your help! ^^
hello i am having problems integrating apple pay. Can someone help ?
Hi, I'm implementing a stripe in one of our application. I need some help for a scenario.
I'm trying to create a payment intent with some amount. And I need to add tax for that intent.
Hi, need some help regarding stripe customer email events in recurring payments scenario.
Hi, I want to create an invoice item with flexible price, is there any way to skip calling the create product and create price api? Because I have lots of different prices. Thanks.
Hi guys, I'm in need of help. I have a Node (NestJS) application running on AWS ECS with Stripe integrated. It's all working well locally (with both test and live keys), but on the AWS application, I'm getting 504 timeouts when requesting a 'Payment Create'. Anyone knows what this can be? My VPC and all outbound rules are left are accessible from anywhere.
Hi!
I'm currently working on creating a price table for 4 products within the context of a SaaS platform.
For the first product, I want to offer a freemium/essential level that is accessible to anyone without any cost. However, I don't want to require the customer to enter their credit card details to access this level (to reduce friction during onboarding).
Is there a solution to achieve this and allow customers to use the first product for free without entering their credit card information?
Looking forward to your suggestions!
Thanks.
I'm sorry to ask you again.
I realized that restarting the program requires reconnecting the RegistrationCode.
Is there a way to automatically connect to WisePos_E Internet with the Reader ID value instead of the RegistrationCode value?
Hello, can I create a one-time payment and later on assign such payment to a subscription, so I can see those together?
Hi, I was using a card element in react
const { error, paymentMethod } = await stripe.createPaymentMethod({
type: 'card',
card: elements.getElement(CardElement),
})
Now I want to use payment element what I need to modify to get card or ach bank debit to create stripe.createPaymentMethod for them.
How to modify the contact information on electronic receipts in Stripe? Is it possible to keep only the email and exclude the phone number?
hi, i wanna get help for stripe 3D pay in android sdk
Gudday guys
I'm attempting to create a set of subscriptions in stripe from existing records we have for previously external customers.
I'm trying to create a subscription schedule (start date may be in the past), and I don't want to charge the customer anything ... however I seem to have made a mistake and in my test clock created scenarios I can see I AM charging the customer.
Can I get some assistance on this?
Thanks!
Hi, doesn anyone know which Stripe domain I should include in our spf DNS record to allow Stripe to send emails from our domain? https://stripe.com/docs/email-domain is not clear on this. Something like "include:spf1.stripe.com include:greenhouse-outbound-mail.stripe.com" ?
hi stripe team, is there any possibility to set the point in time when the notification is sent to the customer before automated charging of SEPA direct debit is initiated?
Hey all, anyone know how to pre-populate the SMS field in Stripe Express onboarding?
Set all the phone fields, no luck...
'company[phone]': inputData['phone'], 'individual[phone]': inputData['phone'], 'business_profile[support_phone]': inputData['phone'],
Hi everyone.
Is it possible to make payment plans with trials and collect payment details upfront?
Hi, i wanna help about android stripe
hi everyone, I have integrated stripe payment using flutter_stripe package. I have completed all necessary steps for enabling Apple Pay and when I am testing on simulator it works as well. But as soon as I switch to live keys and upload the ios build to testflight, apple pay stops working and on stripe dashboard I see a message that says "payment_method is required" when I try to do a payment.
Does the Stripe Verification Sessions API provide a webhook event to notify when a verification session has expired, and if not, how can I handle session expirations in my application?
Howdy folks. I've got Klarna turned off in payment setting for both my account and the connect accounts, but I've still got customers ordering with Klarna. What am I missing?
I would like to pay with WISEPOS_E model in test mode.
If you insert a card that you are currently using, the payment will fail.
Do I need a test card sold by Stripe to make a successful test payment?
If I say I need it, do I just need the card number or do I need the actual card.
Hello,
Is 3DS mandatory for wallet payments (Google Pay & Apple Pay)?
Hi, I've searched the info but I could find how can I verify the domain with Apple Pay. I'm lost! Is someone could help me please? Thx
Hello, Stripe team, can I get my payment from azerbaijan with manat? how much is the commission for the payments received from azerbaijan, for example, how much does it cost me from 1 MANAT money?
Hello,
Is 3DS mandatory for wallet payments (Google Pay & Apple Pay)? If so how can this be triggered for the test environment?
Hello team?
How to remove country selection on payment element
hi
how can I use discount in invoice api to get count of coupon that how many times user used same coupon.But it's deprecated
hi everyone, does anyone know a way to automatically verify web domain for enabling Apple Pay? Is there a way to do it via API somehow or does someone managed to automate that?
Not sure, this is more of biz/technical query. We have a company registered in 1 location, but going forward we want to change the entity to another location in other country ( say from India to US) , will all my transactions/ invoices/ subscriptions be handled automatically?
Hello team, I have a question about the PaymentMethodMessagingElement and how we can know if it will be shown klarna or not
Hi All, quick question. I have setup a subscription through the API where in the checkout session I enable the billing address collection. even though the billing address is being collected, it doesn't add that address in the invoice. Can you please let me know what configuration or API call is necessary to have the billing address in the invoice?
Hello, how do I know whether the connected standard account did fill all of required information + is "enabled" / "completed"? On the other hand do I have to track whether such account has some sort of issue, therefore isnt eligible for incoming payments?
Hey 👋🏻 Anyone here who uses Laravel Cashier (Stripe)? I have a question about taxes 😅
I want to resume my question from yesterday evening, I'm sorry my connection was interrupted https://discord.com/channels/841573134531821608/1133574333227339837
Hi, I am creating Stripe Connect account for my merchants through the API when they sign up to my platform. I can see the account created but it needs further information from the merchant like ID, bank details, etc.. Is there a way to trigger an email from Stripe for them to continue the onboarding?
OpenAI uses Billing Board for Subscriptions. Where do I find this billing board?
We have a thread already. Chat there
Hi
Hello we are trying to collect sales tax on our subscription products and receiving an error message
you are not registered to collect tax in this jurisdiction
how can subscribe through pricing table in stripe
Hi, I want to know that when the stripe support the price data parameter in the create invoice item api. Thanks.
a Hi I need some help ,
I am investigating how to implement stripe android terminal, been following the documentation and I am running into trouble
https://github.com/stripe/example-terminal-backend/
https://github.com/stripe-samples/tap-to-pay-android-demo
https://github.com/stripe/stripe-terminal-android/blob/master/CHANGELOG.md
2.21.0 - 2023-06-05
Tap to Pay (localmobile)
Update: Using the production version of the localmobile reader with debuggable applications now fails during discovery with a TerminalErrorCode::LOCAL_MOBILE_DEBUG_NOT_SUPPORTED error for security and compliance reasons. Developers should test and integrate the Tap to Pay on Android SDK with a simulated version of the reader by setting DiscoveryConfiguration.isSimulated to true.
QUESTION ,
I have encounter the above issues, and I switch the DiscoveryConfiguration.isSimulated to true , how ever how do I do a local test using my on card on android ?
is there a way to do a local test with isSimulated false?
Please help
A simple, easy-to-deploy backend that you can use to run the Stripe Terminal example apps - GitHub - stripe/example-terminal-backend: A simple, easy-to-deploy backend that you can use to run the St...
A demo app of Tap to Pay with Stripe on Android. Contribute to stripe-samples/tap-to-pay-android-demo development by creating an account on GitHub.
Hey I am trying to test a subscription payment in INR using a debit card from india. The output says 'transaction_not_allowed'. Can anyone help me in this please?
I have tried using multiple debit cards of different different banks. But none is working
I lost My account no backup code or number
my company integrates Connect Custom. I am concerned about the performance of the integration money wise. is there a way to have an accurate performace report about the integration?
hello stripe team, what does has_liability_shift mean?
good morning how can i retrive all payments of a connected account with an api?
Hello, I just want to configure on my checkout page only payment with card, so If I see my checkout page from Spain, its only credit chard shown, but I see my checkout page from Mexico, then there are more payment methods. What is happening here?
Hi there! I checked here that it is possible through the dashboard to create two different clients, with the same email. Is this expected by you and is it okay?
I am trying to receive payment from China ,but Chinese bank card always been rejected event is Union Pay ,I have setten Union Pay acceptable . But always received CVC check Unavaible ,can anyone help ?
Good morning everyone! Is there a way to copy production data (for products, prices and pricing tables) to test mode? I have a bunch of products and pricing tables that I want to test on test mode but copying one by one is super time consuming. Thanks!
Hi everyone, I'd like to clarify 1 point. On our current website we make customers to enter their zip code when they fill information about payment. And question is does Stripe need this zip code or Stripe automatically gets this zip code based on credit card information? Sorry in advance if I asked silly question)
Hi Team
stripe.balanceTransactions.retrieve(
taxationId
);
how we will get the taxationId from invoice or subscription
Hi! Probably a noob question but i can't figure it out. I have to send and api call from bubble to create a verification session. Problem is in json I can't add parameter type, in raw I can but not the return url. I'm glad for any help I can get
Hello! I added the tax_id and phone number information in the creation of the checkout link in my code, but it did not appear in the checkout. Could it be some configuration I have to do on the Stripe dashboard?
Hi, I'm having trouble adding google/apple pay to the hosted checkout form. I'm in a supported location/browser. When I go to https://dashboard.stripe.com/settings/payment_methods/review and look at the latest payments, the contents of the screenshot are displayed. It's odd because we don't define payment_method_types anywhere in our stripe.checkout.sessions.create parameter (node). Even more odd is I don't see where automatic_payment_methods would be defined. I can't put it either in the root object, or within payment_intent_data, the server complains. We definitely have google and apple pay enabled under wallets in our organization, both in test and live mode
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
I’ve already added my chime account but why isn’t this getting off there ?
Hello! I checked here my code. Could you check if this session_id is passing the correct parameter to collect the tax_id? cs_test_b1yBzYy5NucTMvzBAZutDzGRa1t101dpWcxLOZ9g329mjDH6TSx3gbno3Q
Good day, guys, how do I create a payment on subscription update (I add one more subscription item)?
hola!
Payment Methods names are kind of confusing so I just want to confirm something. ACH Direct Debit is us_bank_account and Bank Transfers are customer_balance right? If I understand things correctly, ach_credit_transfer effectively is replaced by customer_balance? Is there a page in the documentation that makes this 100% clear?
I'm integrating Stripe's API with my backend (I use pricing tables so I rely 100% on what Stripe sends me to my webhook) and need clarification on the product_id returned in line_items. |
Is product_id a constant, everlasting id per product? Can I link this product_id directly to my own product reference in my backend? Or should I use custom metadata instead? This would help me correctly map Stripe's product information to my backend data.
using stripe connect, i created an account for 1 of our customers. I want to create an intend now, and have the payment go directly to this account's balance. using stripe node sdk, how is that done?
@here I am working with stripe integration i just want to ask is there any way to make website URL optional during stripe connect account creation for a common user who does not have any website at all? Please assist its a blocker for me since a couple of days.
Can someone open this thread once more ?
Helo all
I need to integrate the google pay with stripe
i already have account with integration of the credit/card payment
need to integrate the google pay as well for android device ,please suggest
Hi team,
got a quick question regarding webhooks,
So I followed the guide here https://stripe.com/docs/webhooks/quickstart?lang=python
and I was able to trigger and listen to events, however, on stripe dashboard, it says connection timed out.
Was wondering how I can fix this?
My client is facing this error after confirm setup intent. anyone facing this?
There's no way to fetch all prices associated for a product on the products API?
I tried expanding "prices" but looks like Product doesn't have this field in the API.
So the only way to have both Products and their Prices would be to go the other way and fetch for "Prices" initially? It seems counterintuive 😅
hi, i need to store and retrieve card details to customer. Facing some issue while creating source
Hey there-
If I have a subscription setup to charge automatically and then the customer removes their payment method... The subscription goes into Unpaid status, and the invoice becomes uncollectible.
If we want to notify the customer that they need to put a card on file to continue with service, what webhook do you recommend listening to and reacting to?
Is it possible to use Stripe's subscription billing (https://stripe.com/docs/billing) in a meaningful way without using any of the Stripe's payment methods?
What I imagine is that the payment method for the invoice would be outside of Stripe's predetermined ones and a server would interact with Stripe's API to set the invoices as paid or not paid.
To be more concrete, the payment method would be through blockchain. I can use my back-end to track the payments but I'm interested in using Stripe's invoice and customer management part.
Or is this a case of trying to fit a square peg into a round hole?
Hey
I would like to know if I can setup fee to a connect account : like 80/20 - 80 for me and 20 for the connected account
Thanks
Hello, does sending invoice emails work in stripe test mode? I already active it in my settings but still cannot see emails after a successful payment.
hello, I Was hoping someone could help me out with a few questions
Hello, I am using subscription schedule and I want my schedule to not remove the existing subscription coupon from the subscription. My first idea is to specify the coupon attribute on all the phases of the schedule I input, but I am afraid that doing so could re-use a once coupon multiple times. Would that do that?
Hello please could someone help me out? I no longer have the number connected to the stripe account. And I can’t log in.
if i have a payment intent that is already paid to no stripe customer, can i update it with a stripe customer later on?
I am looking at possibly configuring a customer portal, is it possible to prevent some subscription products appearing on the portal?
To create checkout session, I would need price id and according to docs that id shouldn't be accessed by public. How could i get the correct ID if my product database is in Firebase?
Hi, question - i'm setting up a plugin that will use stripe - do I need to create a new secret key, or use my existing one?
hi
Hi there,
I need help to tackle :
what webhook events listen once a one time payment is validated to provide/restrict access to the product/service ?
Currently, for recurring payments, let's say "renewing subscriptions" we listen to :
invoice.paid customer.subscription.updated customer.subscription.deleted
Do they have equivalents ?
Thank you for helping 🙌
Should I be seeing a type attribute on webhooks?
case params[:type]
when "checkout.session.completed"
evt_1NWOQQBfLBBmYdmrWlSPHv0L
Our app didn't process this webhook and I'm debugging. Our endpoint was wrong so that was the first issue but now I'm going through the code and not seeing how we are determining the webhook type.
Hello are there logs we can see that show a timeline of logs for Stripe Terminal? All i see is a current status here - https://dashboard.stripe.com/terminal/locations
All see here is a log of when the terminal was registered - https://dashboard.stripe.com/logs
Our connect user is stating the terminals went offline for 1/2 a day, yesterday. How can I verify this?
Good Morning, Will you share information why "Canadian pre-authorized debits" paymet method not displaying on Checkout url?
Hi, in recent weeks a number of our terminals stopped working. Checking the stripe logs they all have the invalid_request_error Reader is not capable of processing this action.
One such event is req_jci3whYP5ApSTV
Hi I have a question related to Invoicing
Can Stripe automaticaly debit a customer in the future ?
I have upgraded my stripe account i want to test the recurring payment success and failure case and want to recieve response about whats the status of payment?How can i approach this?
Hi, I am implementing Stripe Connect so that our customers can create Custom Connected Account. I am having trouble getting the address for their account when they select a sole proprietorship for their business type during stripe's onboarding form. From the looks of it, the account object only has the company field, which has a null address, because it doesnt ask for company address for sole proprietorship. However in the onboarding form the home address was collected. I would assume this would be in the individual field in the account object, but that is also null. How can i retrieve the address in this scenario?
Hello wondering how I can automate taxes on products based on their categories. I'm aware different states have different taxes based on the products category. I'm using Stripe connect .
hello need help to \Stripe\PaymentIntent::create
Will you share information, how to integrate "ACH direct debits"? Thank you!
hello, I have a question regarding the PaymentIntent object
Hello team, we pull our Stripe data with Hevo, a pipeline platform. Evrything is working well except to get the connect account objects. It says: "Use the Secret Key (sk_***) to read data for following object: ACCOUNT"
But we use the secret_key and it works for other objects
Thanks 🙂
Hi, how can we capture the payment method for later reuse when Apple/Google pay is used at a Stripe Terminal reader?
sorry asking about this again because i didn't get a clear answer. We have several coupons created that are 50% off with no specific products attached. We are now making a new subscription which we do want any coupons/discounts to apply to. Is there anyway to make this work? (we are creating the subscription via the API)
Hello all, Do stripe offer built-in shopping cart now? so we can build a static site where integrated with shopping cart ? Thank you.
We're facing some issues with Connect users making refunds when their Connect balance isn't sufficient to proceed with the refund (Custom Connect integration)
The problem is the following:
- A user triggers a refund in our application
- The refund is considered "pending" (we don't trigger it) as long as the balance.available (on Stripe) is not equal to $0 or more.
- When we receive an event "balance.available >= $0" from Stripe, then we trigger the refund on our end.
The problem is that for some users who trigger a refund which generates a negative balance, the "balance.available = $0" event will only be = $0 temporarily. The reason for that is that a withdrawal attempt will make the balance back to $0, but only temporarily. If the withdrawal fails (which is a possibility for some users), then the "balance.available" will be back to a negative amount.
Hence our question: is there a better way to get the green light from Stripe Connect that we can proceed with a refund, as in, that the withdrawal attempt has properly succeeded? Right now it seems that we're getting the information too early, indeed the withdrawal attempt seems to be failing after the mention that the withdrawal has worked ("A payout of $... should now appear on your bank statement" then the next day we see "A payout of $... to your bank account failed".)
Hey guys, I'm reaching out about a payment stripe issue I have. I'm trying to use JSON to parse a value I'm calculating on frontend to the stripe backend server code. I'm unsure on how I could import that data.
This is the code that stripe uses to render the amount of money the user has to pay. I would love to use that "amount" variable and replace it with the payment the user selected on the UI instead. I'm unsure on how I should go about using the backend stripe server code to get this value from my frontend code.
Any help is welcome -- I'm a newbie to stripe, so I'm trying my best. Thanks for the kindness!
Hello, I talked to user @daring lodge yesterday. I have an integration with Stripe in my Ruby on Rails Application to manage subscriptions. I'm using Boleto as payment method and in the page https://dashboard.stripe.com/settings/billing/automatic > Manage payments that require confirmation, I setup "Subscription status" to cancel subscription only If a recurring payment is incomplete for 15 days. Despite, the subscriptions are being canceled after 6 days of invoice. Can you help, I found more cases: sub_1Mw8QMCpjOdJI4gTOW49QPki, sub_1N2hugCpjOdJI4gTSmHKUxMR, sub_1ND65MCpjOdJI4gTKA2Ptv0Q, sub_1N0OCYCpjOdJI4gTqL9syuZd and sub_1ND9j3CpjOdJI4gTOnui4lYj
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Just wanted to say thank you for the fantastic support you provide here 🔥
Hey, Im trying to use the disallowCardBrand beta feature in the paymentElements but when I try adding the option to the element I get this error. Im using Stripe.js and angular for the frontend. Any ideas on what could be causing this, or what I could do to fix it?
regarding this documentation missing as determined here https://discord.com/channels/841573134531821608/841573134531821616/threads/1133762943037747230, is this just missing docs, or missing support in the ruby client and stuff. i'm guessing at the way it works but figured maybe someone knows?
Hello all. I am having trouble with the stripe firebase extension. It is not creating customer objects like it is supposed to, leading to "❗️[Error]: Webhook handler for Stripe event [evt_3NYCTIBvnwuagBF301A3NYnB] of type [payment_intent.succeeded] failed: User not found!" when succesfully checking out. Is there any ideas why this may be?
Hi all, i'm currently planning a project to enable on-reader tipping with Stripe Terminal. Can you advise on whether this is possible to work on with the simulated reader, or is a physical reader required?
Happy Wednesday. Can I get some more context on why our prod Stripe connect account is disabled? It looks like we're all setup in the connect dashboard but our API calls are failing:
Your account cannot currently create connected accounts. Please contact us via https://support.stripe.com/contact for further assistance.
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
payment_method_options[us_bank_account][financial_connections][permissions]" This code in postman is giving the following error "error": {
"message": "Invalid array",
"param": "payment_method_options[us_bank_account][financial_connections][permissions]",
"request_log_url": "https://dashboard.stripe.com/test/logs/req_0Bsdj4KZaslgjZ?t=1690397661",
"type": "invalid_request_error"
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Hey guys, curious how is the checkout.session.async_payment_succeeded event different from checkout.session.completed? Is the former only triggered by one-time payments while the later is triggered by subscription payments?
Hi, hanzo (from the stripe support team) helped us understand the reason we don't see google pay buttons is that we have stripe tax enabled and we don't require a shipping address for our digital service, which disables the button. We would like to avoid requiring a shipping address, many of our customers are quite privacy-conscious, but we don't see a way to only require it if the user wants to use GPay.
We're wondering what the best practices are here. The main reason GPay seems important to us is that some users with heavy bank restrictions, e.g. from india, are not able to pay by card, and since we enabled stripe tax, we had a few messages from indian users about not being able to pay, and we assume we didn't get these messages before because they were able to pay via gpay. Any idea what we can do to improve the situation here? Maybe disable stripe tax in india, since it doesn't look like they're charged any tax from our UK company anyway? Is there an easy way to do that? Any alternatives? Thank you, I might not be online much longer today, but happy to pick it up again tomorrow
I currently can only offer my marketplace merchants to sign up with a canadian stripe account and would like to expand to offer US too and have the automatic conversions it looks in the help section that this is possible but I cant figure out how to acctivate
Hello All, Any one know how to use Tap to Pay (Andorid) in Sweden, the document says Sweden is in Beta. How can I access Beta?
I could use a hand with an api_error response I'm getting in a new integration
Hi Team, Quick Question: Is there anyway to link to a specific Stripe Dashboard instance? We have about 5 instances for our different regions and I was hoping that I could dynamically generate a URL so that it loads the Stripe Dashboard for the instance specified!
The problem I am trying to solve is that when we are in the Stripe Dashboard in the US instance, and we click a Stripe Dashboard link for a customer that is in the EU instance, we get a "Customer Not Found" page - whereas it would be cool if we could construct the URL with information about which instance the Customer is in and it would automatically switch to the proper instance.
when the auto-renewal for the subscription failed due to any reason like (there is no enough credit, card expired and etc..) in this case subscribtion will be cancelled, is there away to renew it again manually by enable customer to buy with another card?
Hello! I'm running into an issue with account links for standard (connect) accounts. I retrieve a stripe account via a NodeJS SDK function that looks like this:
accountLink = await stripe.accountLinks.create({
account: stripeId,
refresh_url: linkExpiredURL,
return_url: completedURL,
type: linkType,
});
I then have a button on my site that lets users go to their stripe account to update it if they want (and I tell them to do this if the stripe account has payouts_enabled=false). My problem is when I click the account link on my site, I am redirected to stripe, but the stripe landing page immediately says "Redirecting to [my site's name].' And then it also never actually redirects. I want it to go to the Stripe auth page so users can sign into their stripe account and give stripe whatever info it needs to let me pay them. Any ideas? Also see attached video of repro if useful. Many many thanks in advance for any suggestions you might have!!
EDIT: The linkType parameter above is set to 'embedded_popup_auth'. I used to have it set to 'account_update' when my users had express accounts, but I've switched to having them create standard accounts. and for some reason 'account_update' was not a valid link type for standard accounts (I got an error). So I switched to this other type 'embedded_popup_auth' which seemed to work at first... until now
Hello, When you confirm a payment from payment elements, if I provided the customer Id in the payment intent, it should've automatically attach the payment method for me right?
when use react native sdk, i create a payment intent of existing customer, but i cant seem to get existing payment methos on the sdk
Hi, I just learned that we are not able to save the card when Apple/Google pay is used with Stripe Terminal. I just want to confirm, we can still refund the associated charge, even though we don't have the payment method, correct?
Hi! I'm using this documentation for Listing all cards (https://stripe.com/docs/api/issuing/cards/list). I'm running into an issue where i know by the response i have more cards, but i don't know how to query for the next pagination of the list. Running this in node.js
const cards = await client.issuing.cards.list({
limit: 100,
});
Hello! We're intermittently getting Warning: Can't perform a React state update on an unmounted component. This is a no-op, but it indicates a memory leak in your application. To fix, cancel all subscriptions and asynchronous tasks in a useEffect cleanup function. when using the PaymentElement . It's just not rendering when this happens. I found this issue https://github.com/stripe/react-stripe-js/issues/99, which looks related. Any advice?
Hi stripe devs! Is there anyway to get the overall discount amount when a subscription is updated midway through the interval and proration charges are invoiced immediately? The description for the line items just has a description (with 20.0% off), but all discount values are 0. A sample invoice in_1NYEHrKjI0M1O6BOLAJYO0uG
Hi I am running into an issue with Customer when generating the payment intent when stripe account is used to specify an connect account. I am getting no such customer error even when I create a new customer. I am following the API sample document here: https://stripe.com/docs/connect/enable-payment-acceptance-guide?platform=ios
Hi, we have an invoice that we try to pay as part of a test. Sometimes this fails with this error but succeeds on retry
"code": "payment_intent_unexpected_state",
"doc_url": "https://stripe.com/docs/error-codes/payment-intent-unexpected-state",
"message": "This PaymentIntent's payment_method could not be updated because it has a status of canceled. You may only update the payment_method of a PaymentIntent with one of the following statuses: requires_payment_method, requires_confirmation, requires_action.",```
Hey is there a way to know if one of our express connected accounts has gone through the full stripe setup steps? Noticed the events fired are only for our own platform account and not any of the connected accounts. Hoping there is an event or something in the account object we can look to verify this
Hi, I am planning to create a marketplace, where there is a buyer, a seller and me the platform. I want to charge 10% commission with Stripe Connect. How does the tax issue work?
Hi, I am following the directions on "Finalizing a payment on the server" - https://stripe.com/docs/payments/finalize-payments-on-the-server?platform=web&type=payment - and am running into problems:
- When I trigger form validation and wallet collection - https://stripe.com/docs/payments/finalize-payments-on-the-server?platform=web&type=payment#create-pm
elements.submit()does not exist onStripeElements - Under "Add and configure the Elements provider to your checkout page" - https://stripe.com/docs/payments/finalize-payments-on-the-server?platform=web&type=payment#add-and-configure-the-elements-provider-to-your-checkout-page -
options,mode,currencyandpaymentMethodCreationdoes not exist onStripeElementsOptions
What do you recommend?
Hello, I'm getting the "invoice.paid" Event with amount_paid 0, should this happen? cases: evt_1NSmDECpjOdJI4gT2kUzojkn, evt_1NXPnBCpjOdJI4gTSrZCwM6K and evt_1NWQb1CpjOdJI4gTPDNOiB4M
I making a Flutter app using https://pub.dev/packages/flutter_stripe The instructions only mention charging the customer and saving the card for later. I want to save the card and charge them later if they have not unsubscribed. Basically giving a free period of time to try the app before charging them.
Hi, I'm trying to figure out where in the API I can set a custom description for our platform statement in Connect.
Currently when a connected account receives payment, it just says "Payment from PLATFORM". we'd like it to list the name of the specific product.
This is my current code for creating the checkout session:
const session = await stripe.checkout.sessions.create({
line_items: [
{
price: deckProduct.default_price as string,
quantity: 1,
},
],
mode: "subscription",
client_reference_id: req.user.uuid,
subscription_data: {
application_fee_percent: 50,
transfer_data: {
destination: deck.connectStripeAccountId,
}
metadata: {
productId: deck.stripeId! as string,
type: "deck"
},
},
customer: stripeId,
success_url: successUrl ?? "https://app.moonlight.world/decks",
cancel_url: cancelUrl ?? "https://app.moonlight.world/decks",
});
This documentation seems inconclusive:
https://stripe.com/docs/connect/customize-express-dashboard
https://stripe.com/docs/connect/destination-charges
Hi, is there any way I can do Apple/Google pay payments with Terminal in test mode? I have the physical test card and that works fine, but when I try to use Google pay it always fails saying that a live mode payment method was used. I tried adding a test card number into Google pay but it rejects it.
hi, im trying to create my first payment link and for some reason I cant find one of my products in the dropdown menu in the "create payment link" page
HI everyone - have an issue:
Based on the documentation: https://stripe.com/docs/api/payment_intents/create I wanted to add additional parameter: payment_method_data (https://stripe.com/docs/api/payment_intents/create#create_payment_intent-payment_method_data). It shows only type attribute is required (I've added it), and I wanted to add billing_details attribute as well. I've tried it in both situations: creating payment intend (it's triggered after we approve the shipping method), as well as on update (triggered, when we place order). But for both cases I keep getting the same error from the provider: ERROR -- : Payment initialization failed: Missing required param: payment_method_data[card]
The reason for me to send this data is to provide line1 in payment_method_data.billing_details.address.line1 to then get the address_line1_check
in the charge notification, from the stripe documentation: https://stripe.com/docs/radar/rules/supported-attributes
address_line1_check: A check by the card issuer to match the first line of the provided billing address (typically a street name and number) against the information they have on file for the cardholder. The supported values are: pass, fail, unavailable, unchecked, not_provided.
Will appreciate any help, or contact to someone who could look into why this card param is required, and what should be in it... Thank you in advance!
Hello, I have a question why the package takes so long
Hi there, I'm having a hard time with App permissioning. I am trying to call the /balance_transactions APIs, but I'm not sure what permission to grant my app to allow that to be possible. More details in 🧵
really sorry to bother Stripe staff with maybe irrelevant question
but I am unable to make use of stripe services despite giving all correct docs, the support team that we cant give you further help why your account is restricted, kindly help me just by sharing why i am restricted so that i can get that issue fixed.
Hello, I have integrated ACH Direct Debit with Stripe and it works in test mode. In the ACH payment flow diagram, it says that the "The merchant presents the mandate. The customer accepts it by completing the purchase.". Does it mean that the mandate is sent to the customer behind the scene, and I do not need to do any coding to generate mandate. Please clarify.
Hi, need help debugging a behavior. A subscription is paid upfront for 30 days, from July 26 to Auguest 26. But there is an upcoming invoice on August 1. Here is a id for test environment "sub_1NYGCvITZzlUK3bS1MCPE0vK".
Hello everyone, I was wondering if I can ask any question regarding stripe API support?
As a follow up to my previous question (not sure how to tag it) -
If I create a subscription with a 100% discount coupon, will the invoice be emailed to the customer?
Stripe won't let me create payment links because I don't have the checkout configured, how can I fix it, it's urgent
Hi, I want to create separate charges as they come in the documentation "https://stripe.com/docs/connect/separate-charges-and-transfers", now my question is how do I apply it in a checkout session?
Hi Everyone, could you please tell me if
there are any update about this feature? #dev-help message
Hello, I have a question about the prorations that occur as a result of upgrading or downgrading a Subscription. When I change a Customer's Subscription to a more expensive Price, I want the difference in cost to be prorated immediately. In this case, I use the always_invoice value for the ProrationBehavior in the Subscription update request, and so the user is invoiced for the difference automatically. However, when switching to a price that is lower than the original, the difference in price remains in the Customer's balance. How can I immediately refund the difference, rather than leaving it in the Customer's balance? Is this something I have to manually handle, or is there some mechanism whereby Stripe can handle this for me?
Hi, I have successfully create payment intent by using localhost with a live server.
But when I deploy web hosting and try to create payment intent with live server. I got this ssl issue. err_ssl_version_or_cipher_mismatch fix.
can someone help me?
payment_method_data[billing_details][email]" is the code I added to send transaction email and I got the following error "error": {
"code": "parameter_unknown",
"doc_url": "https://stripe.com/docs/error-codes/parameter-unknown",
"message": "Received unknown parameter: payment_method_data. Did you mean payment_method_types?",
"param": "payment_method_data",
"request_log_url": "https://dashboard.stripe.com/test/logs/req_n2LAXNoQOjDS0f?t=1690417016",
"type": "invalid_request_error"
Hey guys! I'm building a global Saas project and I need to get Stripe integations in place to accept payments. I have a US company and a proper EIN on which I have been paying taxes for the past 2 years. Why won't stripe accept my account? Keeps saying, " Your business doesn't meet our Terms of Service and therefore legally cannot use Stripe services. If you think this may be a mistake, please contact us."
I even got an email "After reviewing your account again, we've confirmed that your business represents a higher risk than we can currently support. We are unable to accept payments"
Now I fail to understand why is this going on and how to enable stripe for my business
Hey everyone. I'm setting up a card payment method input and trying to source accurate info on issuer IIN / BIN numbers and their associated Card number lengths is proving tough. The diner's club cards in particular are failing my checks because some sites say that IIN ranges of 300-305 will have 16 digit card lengths (like the stripe test docs) while others say those cards will only be 14 digits long.
I've tried calling Diners Club directly for accurate info on this but that was literal hell and gave me no answers. What is the best way to get this info?
Is there any way to extract an report showing the payout trace ID?
I'm starting to learn the API, and I'm going around in test-mode attempting to do charges and it's giving an error for missing card even-though the cust_ID has it.
Not sure if I'm missing something or..?
.
Hi, what condition will make the Source in logs become null? like this img
hey guys,
i have a basic use case in reactjs where our client wants the following process:
- user enters amount they want to pay
- user enters card details for payment
- user submits form using "Pay" button
I've been in contact with stripe support, and they say the only way to do a basic once off payment is via the invoice api route:
https://stripe.com/docs/api/invoices/create
just wondering if anyone else has come across this use case before
thanks
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
hi
bprnt.sc/xFeaVuNNJKTA in this screenshot user applied same coupon code second time, it gives error which is correct, because duration is once.
so same i need in custom apply in short to get count of user
Hello.
I have a question about the test payment.
can u give setting page for subscription cancel immediately
Hello team, I'm getting error in webhook while activating connect account:
"errors": [
{
"code": "verification_failed_keyed_identity",
"reason": "The identity information you entered cannot be verified. Please correct any errors or upload a document that matches the identity fields ( e.g., name and date of birth) that you entered.",
"requirement": "individual.verification.document"
}
],
I'm still in test mode. Earlier it works well but somehow its giving errors now
hi
Hi I used my company email to register Stripe already. Can I link my Stripe account to company bank account?
HI
Hi wonderful stripe support devs ...
I'm trying to make a one off purchase of a product I've created.
I want my webhook to pick this up and apply some logic while stripe deals with the invoice ...
however the invoice is coming up as a cost of $0 ... although product is not a $0 value item ... I'm a bit confused.
Hi, I created a checkout session and I paid, so I get the checkout session complete, but I want to know the fee amount, and I didnt get on the response
Hi, I charged customer using Charge api, but after receving funds its initiating payout to platform's bank account attached,
i want to hold payments in stripe balance so it could be used for refunds
how can i?
Hi there! 🙂
Outr Stripe integration is in production. I'm polishing some minor issues. One is an error in refund. I have this in production log:
Refund create
error-status: 400,
error-type: invalid_request_error,
error-code: charge_disputed,
error-param: ,
error-message: Charge ch_... been charged back; cannot issue a refund.
My question: how to test this refund error in test environment? I tried with an 20 days old captured transaction, but refund succeeded.
Hi folks! I just added a new payment method to this customer, I added it with a wrong CVC to do some tests, yet the setup intent passed without problem. I've been looking at the logs but I see no way to identify the wrong CVC check.... Do you know if I'm missing something?
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Hey Guys!! I have a subscription with metered usage. If I cancel the subscription I need to charge for usage amount. How can I do that using api. Please suggest. Currently If I cancel the subsription immediately It doesn't charge any amount
hi i update plan for one customer in test mode but amount not showing correctly in api
Hi Support Team! We got this email "Your Stripe account, Fuxam GmbH, is approaching a processing volume limit for the payment method, sepa_debit. We’d be happy to assess if your limits should be adjusted – payments can fail if a limit is exceeded. If you are a new customer or plan to process a high volume of transactions, you can request a review by replying to this message." We've processed less than 1000 euro in production so far. How come this is happening?
Hi, I'm using Stripe connect
I have a payment_intent pi_XXXXX from my organization dashboard
when I try to view the same transaction from the User dashboard, I get a payment object py_XXXXXXX
as I know the payment intent is created first then the payment object itself
how could I get the payment intent of the payment object and vice versa
Hi there. I have a question about billing portal service, I don't see options for update subscription plan but I have few products created in stripe dashboard
HI, when you create a subscription schedule at a future date, how to add Test Clock to subscription schedule or subscription because its not creating subscription until that day
Hi, I need help to change OTP to a different phone number. But I can no longer access my account
I want to install the stripe CLI in my Linux operating system. I've followed that guide:
https://stripe.com/docs/stripe-cli
But it shows me to download the tar.gz file or maybe the repository, IDK.
And tells me to unzip it with this command:
Unzip the file: tar -xvf stripe_X.X.X_linux_x86_64.tar.gz.
I've tried doing it in my project and in the folder where that clone repository is and also in my home folder but it's throwing an error.
One subscription can have multiple SubscriptionSchedules?
Hi here is my code in laravel
after trial ends its cancelling subscription
When subscription updates its current_period_end and trial_end are same in unix
and why not after trial days the subscription payment deducts
How to send automatic paid invoices/receipts by emails for successful payments to customers?
Hello, is there any elegant solution to this: https://support.stripe.com/questions/why-are-customers-locked-to-a-specific-currency-and-can-not-be-moved-to-a-price-in-another-currency?
I am using direct charges with standard accounts (Connect) and the flow is following:
- user pays for a one-time purchase (checkout session with "setup_future_usage": "off_session") -> lets call it a paid trial
- when the webhook for such trial comes, I retrieve the payment method from the checkout 1) and I am using it to create a subscription on his behalf with a trial with agreed on amount of days
However since its a connected standard account, he can create an invoice for the customer manually (with different currency), therefore 2) will throw an error in the webhooks part. How can I check if I can reuse the customer which already exists in my database (under the connected account)? Or the best way is to create a new customer each time?
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
Hi there,
Do we have the API for creating invoice from old invoice data using id ?
Hi, when creating a Standard Connect account an account.updated event is triggered which i can create a webhook for. I want to automate the process and create a stripe connect link through my function and send it in an email whenever a new connect account is created.
The problem is the event triggered is account.updated and i can’t figure out when its for a newly created account vs an exisiting account that has been updated. Is there a field in the webhook request payload that can identify if the account is created or updated? Thanks
Hello Stirpe
Recently most of the payments in my stripe account are failing. Decline codes are mostly generic_decline . Do generic_decline error relate to credit card security error? Is there something (some configurations or do do list) that I need to do in order to reduce or avoid such errors?
Hi, a user bought from my ecommerce using stripe, the problem is i was not able to register it, because he started with a checkout session cs_live_etc and finished the payment on another. I also checked the Metadata making sure it was the same order. Can someone help me understanding how to manage this situations?
I'm chargin customer using charge api,
i want to charge customer (total checkout payment + stripe fee + platform fee ) as total charge amount
there's an parameter "application_fee", what is advantage of using this to take platform fee?
if it has any advantage should i charge stripe fee + platform fee as application_fee ?
Hi there is it possible to create invoice using invoice_item_ids in the payload of API
Please chat in the thread we have already: https://discord.com/channels/841573134531821608/1134032738979151875
Hello
i'm getting identity.verification err
No signatures found matching the expected signature for payload. Are you passing the raw request body you received from Stripe?
but i pass as said here
https://github.com/stripe/stripe-node/blob/master/examples/webhook-signing/express/main.ts
Need help regarding Stripe invoices, statuses and attempt_count
quick question
I want to create an invoice charge on behalf of the stripe connect account to a customer that belongs to the stripe connect account
two conditions to satisfy.
it should collect an application_fee_amount for platform account
it should send an invoice with the payment instruction
it should do direct charges
however it didn't the above .
please help
Hi Stripe Team!
Can you tell me the exact reason why this card failed this time, as it was working fine? Please check your fingerprint and PI.
- fingerprint : qTAOxPQGWo6BwQFi
- pi_3NYOc1Bc6tHKaMkE1admphfD , pi_3NYOmrBc6tHKaMkE028AdXwc
HI, I want to expand the retrieve of a payment intent, but is not working -> $this->client()->paymentIntents->retrieve($paymentIntentId, ['expand' => ['charges.data.balance_transaction']])->toArray();
Hi every one. My web app is using stripe. And users use credit card to pay in my web app. But I found that every payment stripe will collect fee. Some of my customers are American and use US credit card. Some of my customers are from other countries. So they do not use US credit card. I found that fee is different. Is there a way that can help me calculate fee after user fill card information but before actually pay? I have found the doc and found nothing. Someone can help me?
Hello, I have been testing the workflow and right now it seems like stripe is declining all of my cards. Is there anything I can do to unblock my cards?
Hi everyone, I'm using stripe on my web application, and I was wondering, does stripe handle billing, and send it to my user ?
if this is the case, where can I find de billing mandate I need it, for my company
Hi
Hi 🙂 I have stripe on my website and I need to add subscription payment - how i can do it ? I will be thankfull fpr the information and steps 🙂
Hello again I cannot reach the support that was given to me https://support.stripe.com/support I have a page not found error
how to disable test mode-auto cancellation? this behaviour creating issues while testing test clock
Hi, i tried this example https://stripe.com/docs/payments/accept-a-payment-deferred?platform=react-native&integration=paymentsheet-flowcontroller, we are using expo 49 and @stripe/stripe-react-native v0.29. Calling presentPaymentSheet we got this error: FlowController must be successfully initialized using configureWithPaymentIntent(), configureWithSetupIntent() or configureWithIntentConfiguration().
ho can i solve it?
Hi, when creating a Standard Connect account an account.updated event is triggered which i can create a webhook for. I want to automate the process and create a stripe connect link through my function and send it in an email whenever a new connect account is created.
The problem is the event triggered is account.updated and i can’t figure out when its for a newly created account vs an exisiting account that has been updated. Is there a field in the webhook request payload that can identify if the account is created or updated? Thanks
Hi I would like to create a subscription in .Net for an e-learning marketplace:
One subscription will be between the end-user and seller (where I don't take any comission) and another will be between me and the seller
Does anyone have an example for this code?
When receiving a stripe webhook, I do not have resolved (expanded) models. For example customer is only id, and not full customer model.
Is there a setting where we can set up webhook payloads to resolve related models?
Hey, I would like to make that the customer can buy content (video+pictures) on my site. The objects and the storage are saved on my end. I would like to save the contentIds in the paymentintent that I create so the webhook will be triggered, when its paid and I can give the customer access to the content. How should I save it in my pi?
Hello, I am unable to get Google Pay working in production for my React Native app (it works fine in dev mode). I am getting the following error as an alert since the payment is not returning an error object:
Authentication error There was an error authenticating your request, please try again.
I have gone through all the steps in Stripe’s docs https://stripe.com/docs/google-pay?platform=react-native and also gone through Google’s instructions to enable production access and my app is approved. https://developers.google.com/pay/api/android/guides/test-and-deploy/request-prod-access.
If I have testEnv: true it does work in test mode, and if I use a test publishable key or client secret I will get the appropriate error corresponding to the incorrect key/mode. However, If I have everything set to production I get the above error. Does anyone know what I might be missing here?
I am trying to implement the 'transfer money' feature from the user's external bank account to the stripe account using treasury(https://stripe.com/docs/treasury/examples/moving-money#paymentmethods-explained) . I am using stripe.collectBankAccountForSetup to collect and then save the external bank account. The functionality is working fine. But the style of the modal(to collect the bank details) doesn't match our theme. Is there any way to style the modal?
In my subscription, schedule is there. But following Java code not retriving the Schedule object
any one can help?
Output:
Hello ! I have 2 questions please :
1/ Is there a way to make a yearly plan be monthly "invoiced" ? For example, a yearly plan of 120$ where the customer would be monthly invoiced of 10$
2/ If yes, could a monthly plan and a "yearly monthly invoiced" plan belong to the same Subscription object, and share a single billing cycle ?
Thank you
Hellooo,
How do I make use of the payment_intent_data.metadata optional object?
I would love to pass metadata so I can make use of this data after the checkout has succeeded.
This is the docs, I have been looking thru, I just can't find some code that could give me a little help.
https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-payment_intent_data-on_behalf_of
I watched a video tutorial from Stripe Developers, and they use just metadata: { }, in the docs I see so much other stuff, Is this still the usual way of using this option?
Best regards.
Paddy
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Hello, I am trying to pull back the receipt number from the latest charge on a payment intent after the payment intent has been paid. When I view a stripe receipt in the browser (from the receipt_url field I get back from the api), I see the receipt number on there, but the receipt_number in the api response is always null. I noticed in the documentation that this "will be null until a receipt is sent" https://stripe.com/docs/api/charges/object#charge_object-receipt_number. I am not sending receipts through Stripe, they are being sent through a separate service. Is this why the receipt_number always comes back null? Is there a way to tell stripe that a receipt has been sent so it will provide a receipt number? Or is the best thing to do generate my own order/receipt number and save it on the metadata of the payment intent?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Hello, I'm facing issue with Stripe Checkout in Test Mode. Everytime I fill my payment details in Stripe Checkout, I'm a shown a human-verification captcha and then redirected to the error page - "Expired link This link has expired. This means that your payment has already been processed or your session has expired." We also faced a few errors in live mode few days back.
Hello, is it possible, using Stripe's API, to retrieve the notes added to an invoice? I mean the ones we can add to an invoice using the button "Add note" in the dashboard. I can see the dashboard uses a URL like https://dashboard.stripe.com/v1/notes?limit=20&parent=in_1NSckvIHkzU3FsNmiAjUcg4k to load the notes but I don't see a similar endpoint in the APIs and the notes are not in the invoice API either
Hello, can somebody help me with ExpressCheckoutElement? How I can validate my fields on click pay button?
Now I make it in method onClick, if my fields have errors I don't call resolve(). I searched docs, but stripe not implement reject method, so I simply don't call anything.
Anywhere its work good but on ios Google Pay show this stub Complete your payment in the open Google pay window... but at this moment Google Pay window not opened because I don't call resolve callback method
Hi, I am creating an invoice via api. Is there a way to pass along invoice line items when creating invoice? I don't see any params listed in the api docs
I am currently integrating Stripe's Express Onboarding process into our platform. As part of this integration, I have two backend functions. One function creates an account link for the onboarding process, and the other function creates a connected account using the Express account type.
Now, after the onboarding process is completed on Stripe's side, I need to be notified so that I can update my platform's database and take any necessary actions. Therefore, I'd like to know if Stripe provides any webhook event or notification when the onboarding process is successfully finished. If so, could you please guide me on how to handle this webhook event on my side? This information will help ensure that our platform stays in sync with the status of the Stripe connected accounts.
Hey, I would like to know where I get my webhook secret for my production envirement. If I get out of the testmode and check the generated code it also shows:
const endpointSecret = "whsec_a...```
hi i configured live api url in webhook but not working
hi I am trying to connect my Graphy platform to Stripe by after I entered my login detail its automatically enter my business location as united states and I am not able to update it and in my stripe a/c my business location is India
Hello,
With the API, I would like to add a subscription item (a monthly reccuring plan) to a subscription that already contains some subscription items, but i need to create a custom 7 days trial period for that specific new subscription item, that would not interfere with its main subscription that must keep its current billing cycle.
How could i do this please ?
Thank you
Benoît
Hello, I am looking to integrate a payment method into my website, which is currently under development. The website caters to an adult audience as it may contain some nudity, but nothing more explicit. It appears that Stripe does not accept this type of content, is that correct? If so, could someone help me find a solution? Thank you
Hi, I was using direct charge in stripe so I was sending connect account as header in requests.
Now I want to use Plaid so, while creating token "Plaid.linkTokenCreate" will I use connected account header or not.
My bank ach logic was working fine with destination charge now I want to change it with direct charge but plaid screen is not show on click in react frontend
Dear Support,
Thank you for the help on my previous question(s), I really appreciated that.
My post request can be made, but when I try to put it in the switch as so case 'payment_intent.succeeded': it's not working. The Stripe CLI does tell me it's successful, with logs in my Stripe dashboard. So I am almost certain it has something to do with how I want to do something if this switch is being triggered.
Currently, I have a await db.job.create straight in the switch, that doesn't seem to work. Instead, do I need to call the function inside the case trigger? So for e.g. createJob().
Under here you see how its done currently.
switch (body.type) {
case 'payment_intent.succeeded':
const paymentIntent = body.data.object;
console.log(
`PaymentIntent for ${paymentIntent.amount} was successful!`
);
// Then define and call a method to handle the successful payment intent.
// handlePaymentIntentSucceeded(paymentIntent);
// await db.post.create({
// data: {
// title,
// description,
// },
// });
break;
case 'payment_method.attached':
const paymentMethod = body.data.object;
// Then define and call a method to handle the successful attachment of a PaymentMethod.
// handlePaymentMethodAttached(paymentMethod);
break;
default:
// Unexpected event type
console.log(`Unhandled event type ${body.type}.`);
}
Best regards.
Paddy
Hello can I modify an existing price? All the fields are now disabled
Hi there! I can't update my subscription plan in billing portal service because there are not options for select any new subscription plan, but in stripe dashboard I have few products
Is there a way to tell that customer has been deleted just by looking at customer model?
Why I am unable to generate card token directly passing card details in api as I was previously able to do that when is this happened can any one tell me .will this happen to my all projects or my previous project will work fine.the api was api.stripe.com/v1/tokens
Hi, How can I send invoice from connected account without attach the customer
@tacit ridge, thread has been archived, can I send ID to your email?
Hi, How can I add memo in invoice programmatically which has tables and other details
Hello everyone!
I have a question regarding incomplete subscriptions. I'm doing some testing right now and I used a credit card with insufficient funds - this leads to an incomplete transaction - thats fine. After 24 hours it says "This subscription will expire in 22 hours unless the first payment is completed." -> does this expiry trigger a webhook event? If yes which one ?
Hello everyone, while fetching charges from stripe API, I am getting email and name as null for the charges that were created after 18th May. Does anybody know if there is any changes from stripe in that API?
Hello. Is it possible to disable postal code and zip with the payment element?
For my subscriptions, I want to add a promo for a 1 month (cycle) discount. how can I do this programatically?
Hi, I have a question. I would like to create transfer from my Balance to a customer. But I would like create a "entity" separate of my main Balance to separate flux/ balance. I think use for that the feature of connected accountfor that and clone customer for be accessible from my main Account and my connected account. I don't know if it is the best solution for my issue
Hi, I've got two applications running and using the same Stripe account / webhooks. Is it possible to filtre the webhook traffic?
Hey folks, Stripe has a number of "account-based fees", like the .5% assessed from Stripe Billing. These are assessed on a daily basis, and despite being tied to specific transactions, do not show up in your reporting. Is there an API somewhere that CAN tie them to a transaction? It's making accounting very hard not knowing what transactions these account-based fees are tied to.
Hello, I want to know how to trigger stripe redirecting to cancel_url? I use test mode.
Hey I want to create an invoice, that is marked as paid before it gets to the customer. Strangely I get following error message when passing the 'status' parameter to the invoice object.
Stripe::InvalidRequestError: Received unknown parameter: status
Here is the link to my issue. Hope to get some help + views:
https://stackoverflow.com/questions/76778956/the-another-module-is-throwing-an-unexpected-and-no-needed-error?noredirect=1#comment135358493_76778956
Hi, how can I apply a coupon for a 1 time discount on a cycle for a subscription invoice programitcally?
Need help with Stripe payment process. I am using Stripe for payment but I want Stripe to create Invoice only if payment was successful. Current and default behavior of Stripe is that it first creates the invoice and then attempt for payment and if payment failed, marks the invoice void.
I don't really want invoice to be created if payment failed.
Help will he highly appreciated.
Hi it is possible to detach a customer's sepa_debit payment_method from the customer dashboard ?
"shipping_options.shipping_rate". This field is not working although I passed an object id to it. Here is the error "error": {
"message": "Invalid array",
"param": "shipping_options",
"request_log_url": "https://dashboard.stripe.com/test/logs/req_0QEXflUNUq74Ob?t=1690466204",
"type": "invalid_request_error"
}
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Is there any guarantee regarding the order of webhook events ?
Hi there! I can't update my subscription plan in billing portal service because there are not options for select any new subscription plan, but in stripe dashboard I have few products
Hi, I want to set up a payment Integration which works as follows: An admin user can add their payment information (I'm assuming this would be with stripe connect) then they send a link out to an unlimited amount of people and at the end of the billing period which could be any value from (1 day, 3 days, 7 days, 14 days, 1 month, 3 months and 6 months) the person has to pay for however many people joined through the link we send them. For the linking logic I have no issues but I'm a bit concerned about the pricing model. I've seen its possible to use metered billing with usage reports but how would I model it so that it only happens for 3 days? Would I just make the "cancel_at" attribute happen 3 days from the current date? Would love to hear a best practice approach 🙂
Hello there!
I’m having issues with my subscriptions using ACH instant verification.
- Everything goes well on client side, they sign up for subscription using our api, it has them log into their banks and connect account and then everything is ready to go.
- Unfortunately when the created subscription actually begins days later, the initial subscription start invoice always fails.
- if I provide some of the responses I’m seeing in the code could somebody help me figure out what’s going wrong?
Hi, is there a card number that will fail only when charged? I want to test what happens when on trial end if the card cannot be charged.
Hello, I am looking to set back up my bank account info but it is now saying It doesn’t match with my EIN?
the an we have issue in production, signature failed in webhook. Verified webhook ID is matching with webhook link id
Hello Team,
Hope you are doing fine.
I have installed stripe payment method in my Magento 2 website and its showing payment form on main theme but not showing on child theme. Can anyone help me to fix this issue?
My payment was returned back to the sender
hey when using paymentsheet, with paymentIntent Create. i cant seem to get the payment methods to show up, every time the customer has to enter the card. how do i show existing payment methods on payment sheet
Hello, we are trying to use affirm. We get display_preferences as true and on but the the available option is still false In the documents it says that available can be false either if payment method doesn't have an active capability or due to issue in display_preferences, what does active capability mean?
Hi, I'm trying to implement the Iban element into my app. I'm trying to use it on a different page to where I finally submit the data with confirmSepaDebitSetup but the Iban component is unmounting. Is there any way to resolve this?
Hello team,
I was wondering if there is a way to speed up a free trial (i'm testing this on a test user btw). So let's say a user has a 7 day free trial, I'd like to simulate being on the 4th of free trial. Is this possible changing some value on the user's subscription?
M2 Reader - how can cancel the ongoing transaction? like payment started on ddevice, there is one light is on, means its ready for present card for payment, now we want to cancel this and start again with updated payment amount
"shipping_options.shipping_rate" field, I tried to pass the object id many different ways but it is giving the following error: error": {
"message": "Invalid array",
"param": "shipping_options",
"request_log_url": "https://dashboard.stripe.com/test/logs/req_J8U1W3tGa4Tjjn?t=1690471351",
"type": "invalid_request_error"
}
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
How can I get on the phone with support to dispute a chargeback
Is there a way to get the account ID into the webhook payload? We have 2 accounts, one for main payments, another for Stripe Connect for another purpose, but we accept webhooks to the same application for both accounts.
Hello, im encountering a bug in Test Mode with 3DS, i get the response it succeeded from the API but in stripe dashboard it says user begun authentication but not completed it
I open a ticket but support escalated the issue to sales rep call... and he directed me here, any dev can help ?
In order to use stripe tax we will need to collect the user's address, correct?
When using payment elements, can I trigger some code on FE upon payment success? If i dont control the return URL
When sending statement_descriptor for bank redirects payment methods like ['bancontact', 'ideal', 'sofort', 'giropay', 'eps', 'p24'] it seems that the request contains a NULL value for "calculated_statement_descriptor". However, when I send a 'card' payment method the "calculated_statement_descriptor" is as expected.
In both cases I send in the 'payment_intent_data' a value in 'statement_descriptor' key.
is it the expected behavior?
how can I pass 'statement_descriptor' for other payment methods than 'card'?
can we update invoice status to Paid Manually
Hello I have a problem with stripe payment. I watching this wideo: https://www.youtube.com/watch?v=zyM5OsXUGdI&t=122s and in 14:48 in this tutorial his have accept payment site but I haven't got it in the same code on frontend and in beckend what I shoud do ?
In this episode, you'll learn how to accept a one-time payment with a custom form using Java on the server and the Stripe PaymentElement on the client. The PaymentElement enables you to collect several different payment method types from cards and bank accounts to wallets and buy-now-pay-later payment methods.
Presenter
CJ Avilla - Develop...
Hey there! I'm wondering about statement descriptors. Are those completely set by me with the statement_descriptor or can the card network (in the case I'm wondering about, American Express) overwrite the statement descriptor?
Is there a list of banks that work in Stripe?
hello. I am using subscription api with collecting payment before subscription flow. How can i charge user X amount for the first month and then Y amount for all the other billings in the future.
and I have this error in console how to fix it (index):1 Uncaught (in promise) IntegrationError: Missing value for Stripe(): apiKey should be a string.
at ne ((index):1:145294)
at re ((index):1:145366)
at new e ((index):1:353186)
at bc ((index):1:392944)
at HTMLDocument.<anonymous> (payment.js:4:18)
I added I used test mode
Hey, can I somehow stop these webhook failure from retry?
Hi team,
I have some questions regarding webhooks in the case of payments of mode 'SUBSCRIPTION'.
On the basis that the product has a recurring tariff (mensual tarification), I expected to receive on my server the webhook events corresponding to invoice.paid EACH month. However, it doesn't always seem to be the case.
Here are my logs :
Received webhook event of type: payment_intent.created
Current Time is: 2023-07-26 20:01:10
Received webhook event of type: charge.succeeded
Current Time is: 2023-07-26 22:15:49
Received webhook event of type: invoice.created
Current Time is: 2023-07-26 22:15:49
Received webhook event of type: customer.subscription.updated
Current Time is: 2023-07-26 22:16:06
Received webhook event of type: customer.subscription.updated
Current Time is: 2023-07-26 22:16:06
Received webhook event of type: invoice.created
Current Time is: 2023-07-26 22:39:42
Received webhook event of type: invoice.created
Current Time is: 2023-07-26 22:39:42
Received webhook event of type: customer.subscription.updated
Current Time is: 2023-07-26 22:39:43
Received webhook event of type: customer.subscription.updated
Current Time is: 2023-07-26 22:39:43
Received webhook event of type: invoice.created
Current Time is: 2023-07-26 23:15:20
Received webhook event of type: invoice.created
Current Time is: 2023-07-26 23:15:26
Received webhook event of type: customer.subscription.updated
Current Time is: 2023-07-26 23:15:42
Received webhook event of type: invoice.created
Current Time is: 2023-07-26 23:15:42
Received webhook event of type: customer.subscription.
shipping_options[][shipping_rate_data][display_name]=usd and shipping_options[][shipping_rate_data][type] = fixed_amount and output is "shipping_options": [
{
"shipping_rate_data": {
"display_name": "usd",
"type": "fixed_amount"
}
}
], in postmand and error is error": {
"message": "The currency of your Session (usd) must match the currency of your shipping rate (``).",
"param": "shipping_options[0]",
"request_log_url": "https://dashboard.stripe.com/test/logs/req_04jRKrdPLuK8LH?t=1690474254",
"type": "invalid_request_error"
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Hi team, we have a large number of customers who mistakenly have negative account balances. We need to clear those out. Is there a way to do this as a bulk operation? Or do we need to query for every customer, check the balance, and update the balance? If so, will we run into throttling doing that?
Hi there,
I have a beginners question. I am starting to integrate Stripe into my Angular application. Seems that there is a lot to consider for integrating Stripe (framework, API, backend server application). Is there maybe a more easier way? I found the no-code option which is sexy but I need:
- to give Stripe a user ID for a checkout
- to get the feedback from a checkout (checking if the user ID has payed the subscription).
This, seems so, I cannot do when I just integrate the no-code script in my application. Or am I wrong? Any recommendation for a fast Stripe integration?
I'm not sure if this is the right forum for a Sigma question. We're versed in various query languages but can't find tech docs for Stripe's own query language. Reports default to a non-USD currency format and we need to apply a format function to the 'amount' fields. I see that there's a date_format function but there's apparently no similar function for formatting numbers. Any help on this would be appreciated.
Hi, regarding this message error : Only Checkout Sessions with a status in ["open"] can be expired. This Checkout Session has a status of complete.
Hi everyone, anybody knows How to switch Stripe payments from test mode to live mode in Bubble.io? I have updated live keys but the build still goes to test mode checkout flow
Hi
I am using Drupal 9 with multicurrency (USD & Indian Rupee). I am not able to process payment with USD. can you help me how can i get USD payment
Can you reply in the thread I created for you please? 🙂
Using stripe tax what are the possible collection methods for the user's location in order to allow automatic_tax to calculate? (We're using stripe subscriptions)
Wondering if there's some way around using the address element or manually collecting the country/zipcode... I see you can use the customer's IP address, but this seems likely to not allow automatic tax in some cases... and also seems like it would break down if a user was using a vpn
hey everyone!
does anyone know if there is a way to create a payment link, like this one, using API?
https://stripe.com/docs/billing/subscriptions/share-update-payment-link
Hello👋🏼
We are currently setting up a self-pay store and are using Stripe for payment. Since we want to give the customer the best possible experience, we wanted to have everything in the payment element automatically filled in. Currently we only offer SEPA, and we can auto-fill everything so far, except for the IBAN.
So is there a way to fill in the IBAN automatically?
Hi there! Is it possible to customize checkout information through the dashboard in order to always collect billing address?
not sure what im doing wrong here. for my taxes at checkout session.
anyone know why my webhook keeps on or timing out or saying error 404. This is because im trying to make it so after payment has been completed the bot will automatically add the person's user id to the database i have created
Schema question: The 'transfers' object contains a tnx id for each transfer. Is there a way to see what the individual ch id's are in the tnx batch?
Did u know why I haven't got google pay and Apple pay when I create a new payment link, when I have turn on this payment options in dashboard?
shipping_options.shipping_rate_data.fixed_amount.currency_options.<currency>.amount. I added the input as 'eur" and I did not see the output the checkout UI.
When in test mode I click on the onboarding link. It wants details like email, phone, 6 character verification code etc. Are there some 'test' values I can use?
My qa tester cleared his cookies and now our Payment Request Button (Google Pay) is no longer appearing for him....any idea what might be going on?
Anyone familiar with metadata in stripe ?
The loadStripe function is not resolving or failing. None of my elements are loading. Here's a stripped down version I wrote up with our stripe key and a client secret. I also tried with using loadStripe from react-stripe-js
import { Elements, PaymentElement } from "@stripe/react-stripe-js"
import { loadStripe } from "@stripe/stripe-js"
const InboundMemberPaymentsCheckoutPage = () => {
const clientSecret = "asecret"
const options = {
clientSecret
}
const [stripeThing, setStripeThing] = React.useState(null)
useEffect(() => {
alert("loading stripe")
loadStripe("ourkey")
.then((stripe) => {
alert("stripe loaded")
setStripeThing(stripe)
})
.catch((err) => {
alert(err)
})
}, [])
// const stripe = Stripe("ourkey")
return (
<Elements options={options} stripe={stripeThing}>
<PaymentElement />
</Elements>
)
}
export default InboundMemberPaymentsCheckoutPage
Hi.. I want help i want to payout to the connected bank account's on stripe my from stripe to connected account but direct money not transfer from stripe to connect account's bank ?
Is it possible to use the adress form auto-complete functionality w/o a google maps api key?
to Hey devs! I have a b2c SAAS subscription product that I use Stripe for. Each user gets a 1-week free trial. I try to limit the free trials by having users give an email address which their password is mailed to. However, I'm having a problem with users getting multiple free trials by generating sometimes 10 or more legitimate email addresses where they can actually receive the email. What are some other ways that I can use Stripe to limit free trials?
Hey there. When you pause a subscription until a specific date I noticed it does not reset the billing anchor to "now". Any specific thought around why its this way? Also, is it possible to change this behavior?
Hi there! I works on subscriptions... How can I avoid the prorate when the subscription is cancelled?
Hi, new to Stripe. Anyone has an idea how I can change the width of the Buy button?
Hey all, Getting a 405 on my webhook. Gave up trying to use the firebase extension so trying to manually work with the API. I am almost positive that stripe is sending a post req to my webhook, but according to the webhook logs its throwing 405. Any idea why? Will provide code inside this thread.
hello, I have to product A and B, client signs up for subs using \Stripe\Checkout\Session::create , is there way to upgrade or downgrade client
using \Stripe\Checkout\Session
Hi, does a subscription pausing has an end ? Or is the subscription paused until we reactivate it ?
And what happen when a monthly subscription pause is done 5 days after the whole month has been paid, and the customer reactivate it 3 months later ? Does the billing cycle will automaticaly change ?
Thank you
how do i add test payouts to my balance? I cant seem to find the "Add to Balance" button.
hi! what is the best to way to set up payouts to a customer? We want to implement a rewards program where we pay customers monthly for an action. This balance may increase or decrease. I was looking into applying a credit, but i would not like the balance to automatically apply to the next invoice. Thanks!
Been getting “No such source” errors frequently. Any way to fix this?
How can I add these headers to an API call when using PHP?
Hey I’m trying to set up my direct deposit and it keep trying to send a code to a number I no longer have access to and I’m having trouble trying to get in concat with someone so they can change the number on the account so I begin work
hello stripe, how could i add PayPal has a payment method in my checkouts and payment links?
U have to create a payment api account
I've created a pricing table on my front-end that gives the user the numbers that their paying for a service. Is it possible to have my front end communicate the number to my backend? Since it's not a fixed amount, the number will always be changing.
If this is possible could someone refer me to documentation that will show me how this is done?
Thanks in advance!
Hello, how do I programmatically check whether my connected account status matches what is show in the Dashboard? For example, what do I check to get the "Complete" status?
Hi! I set some values on the product feature list. How do I retrieve it using Stripe API? I am using go-sdk v74.
I check my balance every Evening like just I came to found that i have -120 and a dispute. Why's that? And whats that how i can counter it. Ik i got the tutorial but that didn't say me nothing.
I have a case that user has 3 draft invoices during unpaid time. do we have a way to send user to billing portal that show all draft invoices that user has been owed us until now. I used Stripe::BillingPortal::Session.create but it only give me the first draft invoice.
Can someone help explain the difference between the Stripe InvoiceItem object and a Stripe Invoice LineItem object? I'm also seeing an 'sli_' reference in my invoice events, which appears to be a Subscription Line Item ID, so if that is also related I could use some clarity on how these objects are differentiated or play together
I am working with the go-sdk and invoked the retrieve price API. I have set my unit amount to 3.35$ but Stripe is returning it as 335$ instead in the unit_amount_decimal field. How do I retrieve the unit amount that I set on the Stripe dashboard?
Hello, using session checkout, how to do I give a choice for user to pick between product one or two, when I add line items it just create two product bundle instead of choice $session = \Stripe\Checkout\Session::create([
'payment_method_types' => ['card'],
'client_reference_id' => $id,
'line_items' => [
[
'price' => $priceId,
'quantity' => 1,
],
],
'mode' => 'subscription',
'customer_email' => $email,
'billing_address_collection' => 'required',
...
Hello, I am building a landing page using Webflow, and when the user clicks "Start Today", I want them to be brought to stripe to pick the amount of users they have and pay. Is there an option on a stripe payment link to add a custom field where the user enters the number of users they want (2 - 10) in a dropdown and the price changes at the same time using no-code?
Please, i can't write anything :c
Hello, I have created tax rate using tax rate api. Is it considered manual tax rate? What is meant by "Price localization isn’t available for:" Checkout Sessions that use manual tax rates". This is related to display prices of the line items in multiple currencies.
Hello, I have a series of Invoice Item creation calls where one call fails with error code invoice_not_editable, but a subsequent call succeeds. Can someone explain how this might happen? The invoice is not finalized until the final item creation succeeds.
I need to pull up a merchant services statement for my accountant
Is there a way to preview what microdeposit verification emails will look like when your customer receieves them? Also, is there a way to verify that a customer was sent the microdeposit verification email or can I safely assume that they recieved one when SetupIntent.status has changed to 'requires_action'?
I'm trying to run through onboarding flow for Standard connect account in my dev environment. My code should work in production but in dev I give it a gibberish email and password, but then it wants a phone number, I enter 0000000000 like docs say to use but that doesn't work - it errors with ""+610000000000" is not a valid phone number").
Is there a way to send funds from a company express account to an individual express account so the individual express account can payout to their bank account?
hey, i filed a github issue here re: getting email from google pay through PaymentElement, but hoping maybe someone can provide a faster answer!
https://github.com/stripe/stripe-js/issues/476
Hi... In my business I operate as a middleman service provider. If a user pays for the service in mi platform, and after that I pay the service provider, I know STRIPE charges a fee for the first transaction and a fee for the second transaction. But what happens if the user decides that he wants to cancel the service? The service provider will have to send the money back, but will STRIPE charge the service fee per transaction again to give it back?
Hi good evening, I am making a platform that I want to charge 10% usage fee, I want this 10% to absorb the fee that stripe charges.
I am currently having the payment come to my platform and when the payment is completed in the checkout session, I do a transfer of the product price to the seller.
Is there an alternative so I can do that, but have it charged directly from the initial payment and not the balance?
are there any risks in doing it this way?
speed test, ignore
Hi. anyone here to help?
Hi , I would like to know if stripe has a list of exceptions that can occur when interacting with card readers . Looking for an exceptions list to be more specific for methods like (1) fetchconnectiontoken (2) discoverreaders (3) connect to readers etc . This is in the context of the stripe terminal android and iOS sdks
Hi I copied some of my products into live mode but the don't show up. If I try to copy-to-live-mode again from the dashboard... it says they already exist in live mode! Any ideas?
Hello I have a question regarding monitoring the status of the payment intent object . I can see that the payment intent changes based on where the user is in the payment flow
I make several calls to fetch the latest payment intent of the object by calling https://stripe.com/docs/api/payment_intents/retrieve . My question is there a better way to continually listen to changes in the payment intent status or is this the only way ?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Hello,
I am currently integrating WisePad3 and my account is from Italy. I have created a new location ID in Munich, Germany, under my account. However, when connecting, I am still prompted to activate testing permissions. What steps do we need to take if we want to use it in Germany?
Do we need to create a new account in Germany?
The following is the error logs:
com.stripe.stripeterminal.external.models.TerminalException: To request access to this beta feature, please contact us at stripe-terminal-betas@stripe.com.
at com.stripe.stripeterminal.internal.common.adapter.BbposAdapterLegacy$CheckForUpdateOperation.onReturnCurrentVersion$lambda$1(BbposAdapterLegacy.kt:947)
at com.stripe.stripeterminal.internal.common.adapter.BbposAdapterLegacy$CheckForUpdateOperation.$r8$lambda$90uSSISb8A6Tbrr5ukEE6bQ-EBY(BbposAdapterLegacy.kt)
I need to know if user is directed to another currency e.g., usd to eur, why then Strip did not display payment method e.g., sepa on the Checkout UI, so buyer from European countries can pay eur using sepa?
Need some help with customer.subscription.updated event
I'm stuck here, can anyone help me? I'm installing for my client
Hi, May I know the difference between 3DS1 and 2? I use these two card to pay the invoice but the error code is different (3ds1: req_kiYpiCCDxWhED9, 3ds2: req_6DrHWUhbKwXfVV) I expect they all return invoice_payment_intent_requires_action error but 3ds1 won’t.
hi
Is there any other refund charge if Stripe asks the other party to pay by credit card without charging first because I want to refund the money?
Hi all, I'm trying to retrieve info about a specific payout via API, but I'm running into a "No such payout" error. can someone assist? I can post a link to the payout in particular in a thread
I am creating an subscription and then it is generating an invoice and payment Intent.
Then I am sending the Client_Secret to my frontend.
Then I am adding the test card details in the form '4242 4242 4242 4242'. And attempt for payment.
Then this card is saved as default payment method to the subscription.
Then after completing this billing cycle, it tries to renew the subscription.
But after finalizing the invoice, paymentIntent status is 'requires_confirmation' and the payment doesn't succeed.
According to me, the payment should be succeeded as it is the case of auto renewal.
can you help me in that ?
please help me in this issue
hi how to check auto renewal functionality in test mode?
can someone explain this error You cannot request the ['balances'] permissions when collecting bank account details via Financial Connections without first activating this product. If you need these permissions, submit your registration at https://dashboard.stripe.com/financial-connections/application. If you don't, remove them from your code and only request payment_method to simply collect bank account details.
hi, is there a way to upload files to stripe from ios?
Hi, we are a tour operator. This type of expense on people's credit cards usually earns them extra points. However, when our charge through stripe shows up on their credit cards it is stated as an IT Company. Is there any way to register us as a tour operator?
how to find we used 3dsecured card for authentication
is there a webhook for custom retry of recurring payments if it fails
Hello, how can I disconnect onboarded account from my platform? Thanks! (i want users to have the ability to disconnect / connect their stripe accounts) the onboarding is already finished, but I cant seem to find any docs related to the disconnecting the account
hello, i have integrated stripe for my laravel website i just wanted to ask after successfull payment through test card im not able to see any received amount in stripe dashboard test data.
Hi team
we have integrated googlepay with payment request button, we have saved card to the account and trying to access googlepay button but unable to see the button in BR region
Hello, what is the difference between checkout.session.completed, checkout.session..async_payment_succeeded and payment_intent.succeeded? Which one I should use if I want to listen to a successful payment?
Hi, how can I get the subscription lifetime history via API. This is, how can I get everything that happened on the subscription, from plan changes, payments, subscription created, etc.?
hi, I would like know if it is possible to create transaction between wallet of connected account?
I have in a context where I have partnerships that I need to return money, but to facilitate my funds, the separe by a specific connected account... In my vision
I have
1 connected account for my company
and 1 connected account for each partnerships
the idea is to create a transaction between my company's connected account of my partnership connected account
Does the API allows that? Does the API with {stripe_account: '{{CONNECTED_ACCOUNT_ID}}', will know the other connected_accounts ????
thanks you for your help
Hi, in stripe payment link i want to show already added card details to that page, i checked the api document to create payment link api, but there is not request param for this, is their any option to show existing card details or any ohter alternative way to do this
Hey, everybody!
I'm facing this problem.
I create a Connected account for users with this setting - service_agreement: 'recipient'.
It works correctly for all countries except USA. But for US it gives this error - The recipient ToS agreement is not supported for platforms in US creating accounts in US.
How can this be fixed or what is the best thing to do?
How can I retrieve the Card BIN (the first six digits of the payment card)? I am interested in obtaining specific bank information used by the customers for further data analysis and statistics.
Hey guys, I'm not seeing Google Pay and Link as payment options on my checkout page, wondering if anyone here knows why. I'm making this POST /v1/checkout/sessions API call (screenshot attached)
Thanks
Hi, I found that the OpenAi company use stripe to collect payments and I found that theirs collecting payment method page is clean and look like very stripe style. How can I develope that page like them? Thanks.
Hello, when I create an onboarding link for my user, everything seems to be ok. However if user changes the language on the onboarding url, he is redirected to my website, instead of staying on the onboarding url with just changed locales. Is this desired behavior?
hello! hope you're doing well)
how i can prevent user to click this button till some request on page completed
@tacit ridge just following up on my earlier thread, I figured out what's causing the problem. Turns out whenever I use this parameter in my API call, the "Google Pay/Pay with link" buttons don't appear at the top:
"automatic_tax": {
"enabled": "true"
}
Any idea why that is? I have automatic tax calculation enabled in my stripe account, and according to this https://stripe.com/docs/tax/faq?locale=en-GB#are-apple-pay-and-google-pay-available-to-use-with-stripe-tax there shouldn't be an issue
hello, anyone know this error how to fix it?
"class=TerminalSession
com.stripe.stripeterminal.external.models.TerminalException: Contactless transaction failed com.stripe.core.aidlrpc.AidlRpcException: Failed to send request to AIDL server.
at com.stripe.stripeterminal.internal.common.adapter.CotsAdapter.callAidlWithExceptionConverted(CotsAdapter.kt:348)
at com.stripe.stripeterminal.internal.common.adapter.CotsAdapter.collectPaymentMethodHandler(CotsAdapter.kt:133)"
Hi, How to transfer $$$ amount in stripe main account to stripe connected user's Bank account
hi! could anyone help me please How to find a breakdown for fees in test mode. I have 2 same payment , same card, same country but 2 different Stripe fees takes. Would it be a way to have a report with detailed fee breakdowns for each payment? TIA
Hi. In our system, there are some features are paid monthly to use. If the customer pay feature-1, and days later pay feature-2, how could we design the subscription? Is it possible that there's only one subscription for each customer even though they pay several features? Thanks.
Hi there. It is not clear but stripe sepa direct debit support the B2B scheme? and how to use it?
Hey guys! I need you help. I have problems with stripe checkout. User enter American Express card data and got this response
"type": "use_stripe_sdk",
"use_stripe_sdk": {
"type": "intent_confirmation_challenge",
"stripe_js": {
"verification_url": "/v1/setup_intents/seti_xxx/verify_challenge",
"site_key": "site_key",
"rqdata": "rqdata"
}
}```
And fail this confirmation challenge. How i should handle this type of next_action?
Hi! I have a problem with payment. They didn't arrive evenif is all ok. Someone could help me?
Hi all!
in my app, users have the option to change subscription quantity, and I want to show them how much they need to pay right now to apply the new quantity. To calculate price need to be payed i use a retrieveUpcomingInvoce feature from amazing stripe-node sdk, but if I'm understand correctly, the price is calculated including a discount applied to the subscription. Please let me know if it is possible to get the price BEFORE applying the discount and after?
I am attaching my code below
https://imgur.com/fTxo8uj.png
Thanks!
Hi everyone!
There is a feature Automatic tax calculation in the Tax settings where I can enable it. To make it work, I need to add registrations as well. However, I want to exclude some countries e.g USA for calculating a tax by the billing address. How can I do it?
Hey, Guys!! I need help creating two separate inovices. One is inovice for subscription and other is one time charge. However If I try to generate a separate invoice for one time charge item. It automatically add up to the upcoming invoice item. Please suggest!!.
hey guys!
i created a session using java, like this code;
private Session createSession(String customerId) {
var params = new HashMap<String, Object>();
params.put("customer", customerId);
params.put("return_url", "https://example.com");
try {
return create(params);
} catch (StripeException e) {
throw new BadRequestException(error("bad_request_stripe_session_creation"));
}
}
example in test:
var session = mock(Session.class);
given(Session.create(anyMap())).willReturn(session);
and now I'm trying to test this, but I got this error:
No API key provided. Set your API key using `Stripe.apiKey = "<API-KEY>"`. You can generate API keys from the Stripe Dashboard. See https://stripe.com/docs/api/authentication for details or contact support at https://support.stripe.com/email if you have any questions.
can someone help me to mock this test correctly?
Hi, is it possible to transfer the admin Account the $$ amount transfer in the customer card or bank account
Hi There! 🙂
We received a strange webhooks (charge.succeeded) received from Stripe. It doesn't have metadata with our reference number, a a lot of other content is unclear.
Hello,
I am using usage-based metered billing, and I need to know how to remove the reported usage. In my specific situation, I initially recorded 100 users, but some of them have been deleted. Now, I want to update the usage record to reflect only 99 users instead of the original 100. How can I do that?
Hello, I use firebase cloud function to listen to stripe webhook after a payment, but this event doesn't trigger.
if (event.type === 'checkout.session.async_payment_succeeded')
Hi
Can we use this filed with coupon only, without promotion code?
Hi,
How to handle tier upgrade when there is no sufficient funds on debit/credit card?
We have a user who subscribed and then tried to upgrade but failed because there were no sufficient funds on card.
We tried removing the more expensive product from subscription and adding back the cheaper one but after that the next generated invoice due amount is 0$.
Will it be free for him next month?
I accidentally put my live secret key on github, i'm trying to roll it in the stripe dashboard but i keep getting "verification code required errors"
Hello everyone, good afternoon! I have a doubt regarding a payments implementation that I'm currently working on, specifically related to 3DS authentication. As this is my first time dealing with 3DS, I find myself a little confused.
I have thoroughly studied the documentation provided by Stripe, and I managed to grasp the basics of how 3DS works. I successfully implemented 3DS during the setupIntent phase, which went smoothly. What I liked is that Stripe takes care of presenting the 3DS modal to the end-user. So far, everything is fine; I can accept the 3DS order and add my card.
The issue arises when I try to pay for an order that involves a paymentIntent, as I want to store the value in Stripe and then use the capture method to finalize the debit later on. When I attempt to use the card that has already been authenticated via 3DS, the confirmation of my paymentIntent returns with the status "requires_capture." According to the documentation, this status indicates that the user needs to take some action because the card has 3DS active.
However, I don't want to re-authenticate 3DS during the payment process, as it was already done when adding the payment method. My objective is to avoid inconveniencing the user with redundant authentication steps. I considered checking the "three_d_secure" parameter in the charges to see if the previous 3DS authentication was successful, but I wanted to seek support to explore alternative solutions to this problem.
If anyone has experience with this issue or has encountered a similar scenario, I would greatly appreciate your assistance. Thank you in advance for your support and guidance!
Good Morning. Is it possible for you to check if "Cartes Bancaires" card is displayed for the following id "cs_test_b1qcZmIye1uN2HWF8kgtcZdUOBHO74GJu1H5fR8n0rlLTDgVlsLnBjSiiL"? Note that I have activated "Cartes Bancaires" card from dashboard. Thank you!
hello, I already passed my metadata in the request, why I can't find it.
Hi, I am using plaid with ach bank and with direct charge. Is there is a way plaid fee (for authentication and balance check) is also inluded in stripe transaction. (So, I can see it in stripe dashboard as i see stripe fee and application fee for every transaction)
Hello - If I create a tax rate on my main account (A) and then try and use it for an invoice on a connected account (C), will that work? Or do I have to create the tax_rate for account C to use it for invoices on account C?
Hello! I am running into an issue with updating the paymentRequest (paymentRequest.update) for the payment request button. When switching between plans, we can occasionally get to a state where the old plan selected is the plan label for the when the Google or Apple pay pop up is shown. When the happens the console.log get logged twice with the two different plan amounts with the older one being logged first and then the newer one.
this.paymentRequestButton?.on('click', async () => { console.log('clicked', this.planAmount) paymentRequest.update({ total: { label: this.plan ? this.plan.label : '', amount: this.planAmount, }, }) })
How when making a new Checkout Session can I configure a collection option rather than a shipping option?
Hi, in live version of stripe, for new subscriptions via stripe checkout, why is the billing_reason: subscription_update rather than subscription_create? In my test mode, I see it as 'subscription_create'.
Hi, I have a setting for the Subscription to be canceled after three payment attempts.
In the case of the subscription ID: sub_1NBzx2CpjOdJI4gT7PP5LNiv, the attempts were made, the invoice (id: in_1NNEjbCpjOdJI4gTdaRS7XrI) was marked uncollectible and the subscription was cancelled, as it should be. Three days later the invoice was paid.
- Should an invoice with the status of uncollectible be payable? Why did this happen?
- If an invoice is paid, shouldn't the stripe mark the subscription as active?
is there a way to factory reset an m2 reader?
Hey There , I set up my bank account information (confirmed with my bank) for payout but i always get this message:
"Hello,A recent payout to your connected bank account failed, and your Stripe balance has been adjusted to reflect the failure of this payout attempt."
I tried to read articles for help but i can't find a way to set it right, can you help?
Hi! Somebody is using my email without my permission on your website, I would like to solve this issue
@rose otter Hi toby, can I listen to checkout.session.completed event to determine whether a payment is successful? I find my metadata in this event.
Hi. Is there a way to get all events ids for an account?
I am trying to figure out why my Payout.Paid event is not triggering my WebHook
Question! Is it safe to expose Stripe Account IDs for suppliers in Stripe Connect?
How to add website links in customer billing portal to go back to homepage
I'm using an Axis Bank(India) International Debit Card (VISA) to make payments via Stripe. It constantly shows "Your card has been declined". My international payments are active, I've made payments on App Store. I've contacted my bank & they too said the same. But stripe keeps showing that message & my payments just won't go through.
On the backfoot with 2 services (Scrintal & Forfeit) that I use. Please help.
How can I implement a login, stripe connect system on my site so that I can get the stripe connect id?
Hi there, I have a question about payout description:
For a recent payout I have set neither description nor statement_descriptor. The payout appeared on the users bank account with the following lines:
Stripe Technology Europe Ltd
apartico XXXXXX
End-to-End-Ref.: NOTPROVIDED
The XXXXXX-code was a 6-char long random code.
Now my question:
If I set description and / or statement_descriptor, will be one or more of this lines replaced and if so, which one? If not will additional lines added?
There's any option on Dashboard > Settings to always mark invoice as Void when payment fails?
Hi, can i call submit button outside the form in payment intent?
I am using ACH (Net Banking) using stripe, I wanted to instantly verify the bank account number provided by the customer
so using the following documentation https://stripe.com/docs/js/elements_object/create_without_intent#stripe_elements_no_intent-options-paymentMethodOptions-us_bank_account-verification_method
and changed the API payload to
return [
'use_stripe_sdk' => true,
'payment_method' => $rawPost['paymentData']['id'],
'return_url' => $rawPost['paymentData']['currentUrl'],
'payment_method_options' => [
'us_bank_account' => [
'setup_future_usage' => 'on_session',
'verification_method' => 'instant'
],
],
'mandate_data' => [
'customer_acceptance' => [
'type' => 'online',
"online" => [
"ip_address" => $remoteAddress,
"user_agent" => $userAgent,
],
],
],
];
getting the following error from the API response:
[2023-07-27 17:18:49] quickpayLogger.CRITICAL: (Status 400) (Request req_54odDI9i2Y41tQ) Payment method data is not allowed when payment_method_options[us_bank_account][verification_method]=instant is used. [] []
any idea what I might be doing wroung ?
Hi Folks QQ is there a way to determine via the API if a refund went through as a reversal? For instance I have a payment and can see in the dashboard we show on the timeline: "This refund went through in the form of a reversal"
Curious how you're determining this? Is this simply checking the ceated timestamps for both payment and refund and checking if they were both created on the same day?
Or is there some property that at the API level that would determine this. TIA.
Hi, I have a specific question about using apple pay for recurring purchases. I see the docs here: https://stripe.com/docs/apple-pay?platform=web#recurring-payments and want to confirm what this allows. Our business charges a monthly subscription fee, and then also we bill our customers a varying amount every week for their orders. Right now we don't require our customers to go thru any checkout flow or other active confirmation of a purchase, we have their card on file and just charge it automatically. Can we do that same thing with Apple pay? Where they only need to authenticate once when they sign up and we can keep charging them after that?
How can we multiple type in flow data in stripe.billingPortal.sessions.create
Why when I used this command stripe listen --forward-to localhost:4242/webhook I have feedback on this link https://buy.stripe.com/test_aEUcPIgtjcrMbegeV8 but when I used this code I haven't got any feedback what's wrong in my code
Hello I know you guys are inanely busy but I have a problem I was charged $2,500 from a merchant and I dispute the charge from my bank because I thought he was scamming me but he wasn’t so I cancelled the charge and he hasn’t received his money back and is been more than 15 business days
i need to check how to test a recurring failed attemp to pay for a subsciption that has been made.
This payment doesn't success, but the event has been triggered.
Hi! I save the payment Id as a SESSION to not create a paymentIntent on each update. But, what if he changes something on our app and the amount to pay is different? When I retrieve the payment ID of the SESSION, how can I verify if the amount is the same, if not create another paymentIntent:
if (!isset($_SESSION['paymentId'])) {
$intent = $stripe->paymentIntents->create([
'amount' => $amountPayment,
'currency' => 'eur',
'setup_future_usage' => 'off_session',
'customer' => $customer_id,
'payment_method_types' => ['sepa_debit'],
'metadata' => ['integration_check' => 'sepa_debit_accept_a_payment'],
'statement_descriptor' => 'Membership',
]);
$client_secret = $intent->client_secret;
$_SESSION['paymentId'] = $intent->id;
} else {
$paymentId = $_SESSION['paymentId'];
$retrieve = $stripe->paymentIntents->retrieve(
$paymentId,
[]
);
$client_secret = $retrieve->client_secret;
}
What data should I save in my database
Hi there. We are processing subscriptions and have a retry schedule setup to retry 8 times over the course of 30 days if there is a payment failed. I'm wondering if there is a webhook that I can listen to that lets us know every time a retry "fails" and gives us the count in the process.
That way after like the 6th retry we can notify a system.
Hi team , just want to know how the payment jntent bhave when customer created a payment intent but customer closed the browser before making the payment . Is there any way to handle this scenario and show payment failed?
I am building out a custom report generator for my bookkeeper and want to make sure I am going about this the right way. We are passing in the metadata with stripe elements into the paymentintent. They are showing up in the dashboard and I am able to use the paymentintent search endpoint successfully:
payment_intents/search?query=status:'succeeded' AND metadata['main_event_code']:'1006'
But now I need to gather the expanded info for this PI to get the rest of the data (stripe fees, application fees, etc). I know in stripe.PaymentIntent.retrieve I can pass expand[0]=charges.data.balance_transaction to see fee, net, etc.
But I am trying to see the same data when using stripe.PaymentIntent.search or stripe.PaymentIntent.list But When I do I get:
This property cannot be expanded (charges). You may want to try expanding 'data.charges' instead.
So if I need to use search or list then do I need to just foreach each returned PI? Or is there a way to expand on lists or search?
Hello,
I need to reactivate a paused subscription, but i also need to set a new billing cycle anchor. I wrote this code, but i have an error with the billing cycle :
{ pause_collection: '', billing_cycle_anchor: 1611008505, }
In the docs, i can see that a timestamp is not possible, so i don't know how to do what i'm searching for
Thank you
Hi ,
I have a question about chipper 2x BT and stripe M2 card readers . If I connect to these readers how long do they stay connected . Is there a time out or something similar after which when the reader gets disconnected
Hi, ive had this problem for atleast a month i was trying to fix it onmyself but im getting really fustrated now and im finding it imposttible, im creating a discord bot that you can purchase premum on im using stripe to handle this
- it creates a checkout
- Connects to the database
3.Creates a checkout etc
but when how can i make it so when the checkout is complete it changes premium_state to 1 in the db and sets the session_id only if the Purchase is successful
Hello, is there anyway to view the BIN number for a dispute?
Hello,
Is there a way I can use the stripe js payment element without declaring a payment intent prior.
I don't know the price until the user selects the product further up the page but I still want to be be able to show the payment options
May I get help understanding what the "link" type is for a PaymentMethod? I dont see any information on that on the stripe docs and how a user can put in a "link" type as a payment method: https://stripe.com/docs/api/payment_methods/list#list_payment_methods-type
I have a quick question! 🙂
There is return_url and refresh_url... is it possible to send to different places depending on whether or not Stripe Express onboarding is successful or fails?
Hi everyone, I want to activate my stripe connect dashboard but i am from Oman and the country is not listed on stripe. what should i do?
what information do i need when creating express connect account on stripe using an api in node js
Will you share test card number to test Ali Pay", "Cashapp Pay", "Google Pay", "Wechat", "US Bank Account" and "Pre-Authrorized Debit in Canada".? Thank you!
I want to know when the subscription trial will end, I need this event in the webhook, have you seen this event in the stripe api?
I recently opened a Stripe account for my licence keys to my products I sell on Sellix I verfied myself with KYC but now it asks me for my business details. Upon selecting "Action required " i select Digital Products or Services it asks for documents, which documents do I provide as my business recently opened and I've only made 3 sales as of now.
what information do i need when creating express connect account on stripe using an api in node js
Hello,
Earlier, I was facing issues with my app related to the inability to continue the payment intent due to 3DS authentication. A support representative assisted me with resolving that problem. However, now I decided to create another test flow, where I deleted the payment method and set up a new one, accepting the 3DS authentication that Stripe returns on the frontend.
During my testing, I tried adding a brand new card for testing purposes, but I encountered another obstacle. The message I received from Stripe is, "Your card was declined. This transaction requires authentication." I had already accepted 3DS authentication before during the setupIntent phase. So, I'm puzzled about why I'm facing this issue again.
I would greatly appreciate any assistance or insights from someone who can help me with this matter. Thank you in advance for your support!
👋 Hello! I ahve a question regarding stripe connect. Are we ablle to use connect to send out different stripe pay links / branding from our one master stripe account? Our company has several different brands and verticals
I've noticed that, for a particular subscription, we keep getting a tax behavior issue. However , there isn't a lot of insight .
Here is the request id: req_BVO1iMuAr9xQu7
Hi! I would like to ask that how to save payment details to mysql table? How is it possible?
can you explain the period start date of this invoice in_1NPuVXBPM36OC3gXnU3xB6kP it was created on july 3rd but the period start says june 3
I have created multiple coupon codes and none of them are applying. any suggestions?
I am not seeing Payout.Paid events on my Connected Account WebHooks
When using the Web Payment Element, there's text that reads "By providing your card information, you allow web.example.com to charge your card for future payments in accordance with their terms." how can that web.example.com be customized?
Hi Stripe team, qq on promotion codes. We have a promotion code set to expire at the end of the month, but we've applied them to future phases on several subscription schedules that won't come about until after the promotion code expires. Will those future invoices on the subscription schedules still apply the promotion code's discount?
i want to recieve the items out of an stripe order but i'm not getting any items when i try to retrieve a paymentIntent
const paymentIntent = await stripe.paymentIntents.retrieve(paymentIntentId);
What am i doing wrong?
Hi there! I'm working with subscription schedule. I need update the iterations number, for add more time of duration of the subscription. The Stripe API trows The subscription schedule update is missing at least one phase with a start_date to anchor end dates to, but I don't want to change the start date that was set when the subscription was created... How can I do this?
Hi There,
After updating a subscription adding more "quantity" to a recurring plan, a new subscription item is created with "Unused time on ... " description showing the 'preview' for the next invoice.
Is there a way to calculate this modification before posting the update on subscription quantity?
Hi, my previous message (#dev-help message) has been closed while i asked to keep it opened. Is this possible to reopen it and continue the talk ? Thank you
For the above case (with the weird tax behavior) would it be better to just set all of the other prices to exclusive (assuming this is what we want) ?
Is there a method I can call to check if a customerid exists? We store the stripe customer id in our DB and occassionally that stored ID was generated from a test stripe connection or a different account so I would like to check to see if the customerID exists or not in the current stripe account and create a new one if it does not.
does anyone have any advice or articles on implementing payments for a platform? i have a platform where our users charge an amount and we tack on a fee to use the platform. i'd like the funds to go directly to my customers and then our platform fee be directed to us.
Are there logs that we can capture from the m2 readers
Hi guys, I'm a new Stripe user and basically I'm using it to receive payments on my Twitter account. When registering, I messed up. I meant to put the UK as my country but chose the UAE instead. I'm aware you cannot change countries but is there any way I can solve this? My Twitter account is already linked to that Stripe account and I cannot unlink it anymore. If I could delete my account and restart, I don't mind. But please help!!
Hi there! I'm making ACH transfers as a destination charge using Connect. I just upgraded my usage from old-style Sources to PaymentIntent - easy enough. When
I make a destination charge using us_bank_account as the payment method. My old style call (in go) looked like this: https://gist.github.com/mkadin/8157ae773b59de7676698dd51ba4d283 and my new style looks like this: https://gist.github.com/mkadin/a58092e858876368ae3bb82734db5132 (essentially swapped the source parameter for the paymentMethod paremeter, and changed the 'ach_debit' paymentMethodType to 'us_bank_account'.
The ACH charge worked as expected, but the payment is not showing up on the destination connected account's list of payments nor its pending balance. The stripe page for the payment intent shows a transfer destination but shows a 'Net' of 0... Did these ACH payments work? Did the destination charge part of it work or is it headed to my platform account? What am I doing wrong
Hi there,
My company sells subscriptions to a service, and want to use Stripe hosted pages / tools to collect and manage
customer subscriptions. I was wondering what the difference between Checkout and Customer Portal are? Can initial
payment collection be done through customer portal or does customer portal only work for managing existing
subscriptions and payments? Thanks!
Can I add a financial connection with 'balance' permissions to an existing payment method?
Please check my recent message @ember bear
Hi I have a question regarding shipping rate for a connect account. Who does it go to and can we make sure all shipping cost monet goes to application owner’s Stripe account?
I am having difficulty getting into my Stripe account. It says it is sending a code to a number I no longer have. When I attempt to use account recovery it then tells me I don't have 2FA enabled. I was recently accepted to You42's creator platform. I want to link my bank account but cannnot do so because I cannot get into the Stripe account or use Account Recovery. I have tried to use the Send ID option as well. Any directio on where I can go from here?
Hello,
I am integrating Stripe in my Angular application and my progress so far is that in my Angular (client) application I can click on a checkout button, which redirects me to my server application, which creates the checkout session.
However, before I did this I tried to use just the no-code option which only requires a script intergration into HTML. This was nice but did not suit my requirements because I needed to send customer IDs and needed to get information about customer payment status, which foced me to configure the client -> server backend -> Stripe way.
I liked in the no-code option the iframe which showed very nicely my three subscription products. Here the question: Can I somehow get such an overview of my three subscription products, as the no-code option offers, for the regular ( client -> server backend -> Stripe) integration? Or would I need to develop it by my self?
I found that whenever I use this parameter in my API call, the "Google Pay/Pay with link" buttons don't appear at the top:
"automatic_tax": {
"enabled": "true"
}
According to this https://stripe.com/docs/tax/faq?locale=en-GB#are-apple-pay-and-google-pay-available-to-use-with-stripe-tax "Stripe Tax supports Apple Pay and Google Pay if your customer enters their shipping OR billing address during the payment process."
Since I have "billing_address_collection": "required" and the customer is already an existing customer with a billing address that you can see in the screenshot, how come the Google Pay button isn't being displayed?
Here's the checkout session I'm referring to: cs_test_b1T7d7FAdQtVtct7qQaUDN0hUze0lCSuGigeJTNyKwMNK2I3ynmF0zW7Zy
Hello, I have an subscription sub_1NYvbSCpjOdJI4gTbLCw4kof with BOLETO as payment_method. The customer paid the invoice (in_1NYvbSCpjOdJI4gTnguF8CBP) that had the "void" status. How Stripe handles this case?
I'm developing a non profit app that has products with prices configured for different donation amounts per campaign. I would like to get the total amount of donations made against a product. I did not see a relevant API call that will return the sum of all purchases (donations) against a product. I saw the Balances API, but that seems to be at an account level. Is there a way to query the API to see the total amount of purchases (donations) for a product_id? If not, should I track all transations on my side and sum with some type of true up regularly to verify correctness?
I am trying to use Payment-Sheet.
https://stripe.com/docs/payments/save-during-payment (Following this method)
I have generated PaymentIntent, CustomerId, EphemeralKey
But on the client side (React Native App) I am getting this error,
"Invalid Setup Intent Client Secret: pi_3N................."
Note: My stripe is in test mode.
Can I get any suggestions or workaround for this?
I have implemented the stripe checkout session api within dotnet. In testing, I am running into and getting conflicts (409) when trying to create checkout session. I am hoping someone can give me insight into how I might resolve this/ get arround it? Not sure if its too many requests being made and I am getting conflicts because of that or something in my implementation.
Hello! Is it possible to send a user to the upsell version of a product? I have tried using the upsell price as a parameter, but it's causing an error. Is there a way to automatically select the "Save $50 will annual billing" already selected or something like that?
Hi, does anybody can help with using @stripe/stripe-react-native?
<StripeProvider
publishableKey="pk_test_51HjS..."
stripeAccountId={stripeAccountId} >
...
<CheckoutScreen />
</StripeProvider>
Do I can somehow passt the stripeAccountId dynamically like in example?
Can I use recurring payment for one time and vice versa?
@haughty jasper Can you please use the thread I created for you?
Can you please look for this article. Is it the solution for the dynamically set an Account ID in Stripe?
https://robertmarshall.dev/blog/dynamically-set-an-account-id-in-stripe-using-loadstripe/
Quick question 🙂 if you use Stripe Identity with Stripe Connect Express will the supplier have to re-authenticate their ID again in Express onboarding?
Hey. We trie to add multiple payment methods (like cards, Klarna, sepa etc). We would like to save user's cards for future usage. Hence when we create payment intent we specify setup_future_usage=on_session. however it won't work with payment_method_types=["card", "klarna"] How we can make it working to have multiple payment methods with possibility to save cards for further usage?
Quick question:
How fast are charges_enabled and details_submitted updated with the https://api.stripe.com/v1/accounts/{{account_id}} endpoint (Stripe Connect Express Onboarding)
I mean, guessing that details_submitted is updated faster, but charges_enabled could take longer if Stripe needs to do more KYC?
Hi, I was wondering if it was possible to make this scenario using Stripe :
- Seller creates a service in the website
- 100% payment is transfered to my Stripe account, but Seller's cut is in website balance (points)
So the Seller can use the website balance to buy other services inside the website - If Seller doesn't want to use the balance in the website, they can redeem it
The thing is, I didn't find anything saying that I can send money to people with Stripe after a specific action (redeem in this case). I found this https://stripe.com/docs/connect/manual-payouts but I'm not sure if it can achieve my scenario, as it's a holding.
hi any here to help?
@mighty hill the approach from github works fine.
Can anyone here help me and answer if issuing a refund thought the API with RefundService() will in some cases send a "ChargeRefunded" webhook and in other cases send a "RefundCreated" webhook? A few months ago I was testing refunds and created one with the API call RefundService() -> service.Create() and received a "RefundCreated" webhook. So I coded up how to handle it and yesterday I issued another refund the same way with the API , but this time I received a "ChargeRefunded" webhook. Any reasons why this would occur?
how does one tell the exchange rate difference when processing refunds between currencies? the call-back info i'm getting shows what is being returned to the customer, but not what is coming outta the account to cover it - did I miss something or is it a different call?
sorry... allow me to be clearer. when you use the api there are responses to your calls. there are also "listeners" (for lack of a better term) you set up so that stripe can send you info (to let you know when things have happened on their side) - I was referring to those (I know, my terminolgy ain't the greatest)
I don't have a question, but just want to give my thanks to this stripe discord server + the staff! The support is amazing, and super fast. Keep it up guys, you’re amazing!
Is there a reason why I am not seeing "BECS" payment method in my Dashboard?. Note this is a US based company. I am testing integration of multicurrency where customer is located in UK. So I expect that Stripe will display BECS, which it did not because BECS is not present at Dashboard to activate.
This channel is closed on weekends and holidays, but we'll be back! If you need help before we return please contact Stripe support: https://support.stripe.com/contact/email?topic=api_integration
We're back! The channel is now open and we're ready to help you with your technical and integration questions!
How long does it take for sales team to approve me to get access to live mode? (Issuing)
Hello The Stripe Team,
I am doing my Stripe account verification, I arrived at "Add your bank account to receive transfers", The currency I put "USD" and the country "united states", I have a Canadian bank account but I can even do it because my Canadian bank uses an alternative with the bank "Wells Fargo Bank" which comes from the United States. I put their Routing Number, then when I put my Account Number it says to me "We did not find the bank corresponding to this routing number: routing number" it is a technical problem for you. I can even give you proof of what my bank says and if you need the SWIFT CODE here it is to help me complete my account please.
Here is the proof :
Help me please.
Cordially,
Mohamed-Ali
What are you guy's work hours?
Hi, I just wanted to confirm that there is no way to integrate the Reader M2 into a web based app (the server side of it, not the “front end”)? I am am looking to integrate some in person sales to a personal project I am working on and want to be able to have an easy in person checkout right though the rest of the system I am already working on.
If this is not possible is there another way to do in person payments?
Hello, I have some questions regarding the payment.
Can you help a guy out tonight?
I'm so stuck....
I'm passing the client reference ID to the payment button... but I can't find it in Zapier, NOR do I get it back in my "thank you page URL" - I think I'm not using the format right:
My Payment link is: https://buy.stripe.com/fZe3xxxxxxxxxxxxxxxe28T?client_reference_id=12345
My "Thank you page URL" is called as follows: https://www.xxxxxx.com/createnewuser.asp?Password=xxxxxxxxx&stripe_field={CHECKOUT_SESSION_ID}
What am I doing wrong?
Hi guys, could you please tell me how can I remove the country field from the PaymentElement ? I just want to remove / hide it from the bottom where is it innitially placed and I want to add my own field for country
So that country field , bellow the expiration and cvc fields I want to hide/ or remove it
@sick magnet let's use the thread created for you: https://discord.com/channels/841573134531821608/1135393383381225642
and use my own field
ik this is not the correct place to go but i bought something and it did not work as intended to work and i want a refund, is there any way i could get a refund on stripe or not possible?
i was through sellix but sellix uses stripe for payment
so do i go to sellix or stripe
May I ask .How to payout the amount in the attribute pointed by the red arrow
hesternal
i cant sign in bc i got a new number
Need some help - Not receiving invoice_payment failed webhooks?
I need some help in step 4 of this URL and for client setup, and not to sure I need to change files in server and client or not ?
HELLO please is there stripe support available now
Hello, I'm setting up a Python script to import subscriptions from a Wordpress plugin (Membermouse) to Stripe. All customers exist in Stripe already, and I've setup a basic script to loop through records in a CSV file and import via the Subscriptions Schedule API.
I'm stuck on getting the subscription rebill periods aligned with those from setup in the plugin. For example:
- Customer A is joining a monthly subscription in Stripe
- On import, we need to set the next rebill date to be "05/10/2023" and then continue on a monthly basis from there.
- I've set a "start_date" to backdate their subscription on import, so it aligns with the original subscription start date (e.g. 05/03/2022)
- "proration_behavior" is set to none to ensure they're not charged for this backdated period
Hello, how can I handle this situation? If a user makes a payment through Stripe and then calls the bank to cancel the transfer, where can I see that this transaction has been cancelled? Will it trigger a webhook event?
Hi there, we recently integrated AfterPay on our Stripe sandbox mode and it is showing up on our Stripe integrated checkout without any issues. The only issue I am trying to figure out is that, we got a sandbox merchant ID and secret key. Where can I pop this in on the Stripe account?
Our website is a Magento 2 backend and a Magento PWA frontend site. Thanks in advance
Does Stripe provide a static library for Objective-C?
Hello, what's the best approach to confirm multiple payment intent in a single checkout? We currently offer subscriptions to our customers and if the payment method (card) requires authentication they must complete the 3ds challenge. That's working great so far but we got to the point where we'd like to offer multiple subscription purchases bundles but we want to do the 3ds confirm process only once. how do we do this?
Hi, I've got a question on subscriptions. In the API is there a field that tells you the total current value of a subscription?
Hi Team,
We are seeing lots of failed subscription without any reason.
Could you please debug and find out the reason.
pi_3NZjZkC15gn2KO2g1TGL6gEr
req_fOHL8Vjc442Ljo
Need help with cancelled subscriptions
Hi,
I wanted to check if the Google Pay payment method is supported for Stripe Connect accounts? When I use the connected account's API keys I see the Google Pay option in the Stripe Payment Element. However, when I use the platform account's API keys and supply the account ID I don't see the Google Pay option, just the default card fields.
using AddressElement with autocomplete set to automatic along with CardElement
Hi . How to find whether I autheticated 3d secured card or normal card. after authentication
I have a problem with paying an invoice through the api. The process is working well on our other account, but in our US account it's different and the code always pay a $0 invoice.
https://dashboard.stripe.com/test/customers/cus_OMXeO8mWAY0UPI
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Hey Stripe Support!,
I started using Stripe as a Sole Proprietor - I'm selling SaaS subscriptions and now have paying customers - I want to migrate my Sole Proprietor account, customers, and products to the LLC I made smoothly - I don't want to do anything differently. What's the best way to go about accomplishing the migration?
does stripe have a phone element? i want to use address element but only the phone field
hii stripe team
i have use transfer for producer earnings i want add additional information like which order payement and product name all
Can I use Objective-C to integrate the latest version of Stripe into my iOS project?
I want to give a discount as follows:
Monthly subscription is $30. For first 3 months, I want to give 50% discount but the user can't be allowed to cancel in the first 3 month period. They can either continue at the full price starting month 4 or cancel.
How do I achieve it?
Hi guys is it possible to group my payments via Stripe? For example, I received 3 transactions today. Is it possible to have sum of 3 amounts in 1 transaction? Can I also choose how often I get paid? Lets say once per week instead of daily.
Terminal.shared.connectBluetoothReader how to terminate process in ios
https://stripe.com/docs/api/setup_intents/object
I am using the setup intent API to add payment method details for my customers in conjunction with Stripe Elements. However I'm running into an issue where the customer will add a payment method, however it won't be set as the default_payment_method and so never gets billed. How do I do this via the SetupIntent API or the Checkout Elements? I'm using a typescript wrapper on the frontend
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Can I use stripe without registered business? If so then how can I do it because my sister also dropshipping and she got an sale but stripe told that they need to verify business in order to collect money from sale
I am sending metadata on payment_intent.created event and I am getting metadata also which I am sending but on other events I am not getting the same metaData.
Like for the same transaction on checkout.session.completed event the metaData is empty
Hi team, can we search in payment intent based on metadata?
how can i get Network reason code with the charge.dispute.created even webhook?
Hello, may I ask if WisePad3 supports pre authorization
Hi there,
I'm using Stripe connect
The user adds his card information, then our system creates a card token, and stores it
Then, I'm creating destination charges on my platform
The problem is my balance went negative
I asked for a solution and the advice was to use direct charges
I tried to do so, but the problem is I can't use the created card token on my platform to make a direct charge
I've just migrated from stripe popup checkout the stripe subscription checkout session
how to upgrade/downgrade subscription?
req_BrNdEQt0vGOijw
Why I got the **unknown error occurred ** when trying to pay via Affirm
Hi there,
I'm using Stripe connect
The user adds his card information, then our system creates a card token, and stores it
Then, I'm creating destination charges on my platform
The problem is my balance went negative
I asked for a solution and the advice was to use direct charges
I tried to do so, but the problem is I can't use the created card token on my platform to make a direct charge
@livid knot please continue in the thread
Hello,
I was told earlier last week that 3DS for digital wallets (Google Pay & Apple Pay) very rarely happens. Can I get this confirmed?
Even if there is a slight chance of 3DS happening, I would need to ensure this process is handled.
hi i need help with extracting data from an event object
My account has not passed face verification, how should I appeal
Hey Stripe team
I want to know what exactly stripe charge for monthly fees, on the website I saw you say we charge per transaction but when I have available balance it goes down like $1 per day or something
I want to know that I am a UK account, why is it still T7 after the first withdrawal?
@safe ingot please continue in the thread. And for that you would still want to reach out to Support anyway
The UK account is T several times, my first withdrawal is still T7
Can I change the withdrawal time after withdrawal?
@safe ingot please don't continue chatting in the channel.
To whom it may concern - when creating phases via the api, I can only add 20 items to a given phase. However, there is no such limit when creating phases in the front end. Is there a way to bypass this restriciton in the api?
I'm not sure if this is the place to ask questions. I'm new using Stripe and follow the guide to create my own checkout sessiom with python. Django + Stripe give me no problems, but when I tried to integrate in my own app, which uses docker, and then create the checkout session return a cors problem. Someone has an idea what can be?
HI. I have some question.
Hello there! I have a question about billing portal ! when I trying to update my current subscription plan to other subscription plan in webhook I seeing that create new subscription but I need to update current subscription
Does anybody have any idea how to avoid the error below?
This PaymentMethod was previously used without being attached to a Customer or was detached from a Customer, and may not be used again.
Payment methods are duplicated by Stripe when a customer enters in the same card multiple times, whether on Invoices or Subscriptions.
We need to show the customer a list of their payment methods for managment and therefore, to make it UI friendly we de-duplicate payment methods by detaching duplicates and moving subscriptions on the duplicates to the earliest payment object with the same fingerprint.
However, once these are detached it is entirely possible a user attempts to enter the same card again, whether on an Invoice or Set Up, even if they are shown the card already exists on their profile since we do not have control of the card that a customer enters.
They are then displayed the above error, how can we stop that?
Saw this mentioned in 2019 onwards here but there was no update: https://github.com/stripe-archive/stripe-payments-demo/issues/45
Cheers!🙂
I've setup Stripe Atlas, and I'm currently waiting for it to be formed and to get my Tax ID, however, is it possible in the meantime to recieive payments temporarily through a Sole proprietorship while I wait? or is it just a waiting game rn?
Or could I possibly use another Stripe accout, setup my Sole proprietorship and then later move the subscriptions and customers over to the Stripe account with an LLC?
why my currency changed to USD at last? i choose MXN before。
Hi. A while ago I asked on here if it was possible to check postcodes and CVCs without radar. I was told yes and given some documenation. But we're struggling to get it to work. Can I ask for some support please.
hello all, anyone know why I'm getting this error message:
class=AidlRpcClient message="Failed to send request to AIDL service"
android.os.DeadObjectException
how can i make reader value nil and disconnect reader after connect to app in ios
Hi,
im doing usage record with timestamp
i used laravel carbon but im having this error
"Invalid timestamp: must be one of now"
On the payment page, how to check if the user has entered his validating email
Hello! 👋
We are seeing some payments that are going through with card payment methods that are expired. From our understanding this is probably because of the automatic card update feature.
The issue is that on the dashboard it still show the outdated card information and it makes it a bit cumbersome to follow up on customer requests and checking information.
We are wondering this is by design or if it is a problem with seeing up-to-date information on the dashboard.
Why did I receive below email after making a transaction using Multibanco
I have a question about webhooks
Hello,
I'm looking for some best practices on how to manage yearly/monthly plans. Is is best to have 1 product and use different line-items for the yearly/monthly plans or should they each have a different product altogether?
Thanks!
Good morning,
I'm having issues adding an external email to our account.
Google Authenticator not allowing me to proceed past the screen.
Hi..
When i trying to payout from stripe to bank account
like this
const payout = await stripe.payouts.create({
amount: Math.round(1 * 100),
currency: 'aud',
});
but when they return the response then status showing pending
status:"Pending"
and when i get the payout list then showing Paid ?
need help
For customer.subscription.deleted event type, will the status always === 'canceled'?
Hi everyone,
I have a question about what is the difference between charge and invoice.
After enable the GooglePay on stripe dashboard i can't see the googlepay button on checkout page, could please help on this, this
Hello!
We are seeing some payments by payment method type klarna return status requirement_confirm after buyer complete payment. I dont know why need confirm, could please tell me why?
Hello guys, I received an email from stripe that my business will be closed soon as I am selling crypto currencies which I am not. I am just selling "requests" to perform a benchmark of RPC nodes. If you wanna benchmark is gonna cost 1 "request" and you can buy these "requests" with stripe. Am i doing something which is restricted in stripe conditions?
Hey, I would like to check if the confirm is successful or not. Can I somehow do that with this function? https://stripe.com/docs/js/payment_intents/confirm_payment
Hi team,
Can we use below code without builder
Stripe.apiKey = "sk_test_";
PaymentIntentSearchParams params =
PaymentIntentSearchParams
.builder()
.setQuery("status:'succeeded' AND metadata['order_id']:'6735'")
.build();
PaymentIntentSearchResult result = PaymentIntent.search(params);
Hello, is it possible to migrate your customers from test to live stripe? On the same account
I have a question about webhooks
How to Appeal a Stripe Verification Failure
Hi team, suppose in my payment intent i have declared metadata as name: Jack, mark . Now i want ti search all payment intent whose name is Jack only. Hiw can i achieve this?
Hello, I am trying to modify the description of invoice items of a draft invoice,
- there are no invoice items IDs
ii_but invoice lines IDsil_and line items IDssli_, what's going on? - It seems it is not possible anymore to update their description?
stripe.error.InvalidRequestError: Request req_DZEDkl6VwO5VPM: When passing an invoice's line item id, you may only update `tax_rates` or `discounts`.
- the
idfield of each invoice line/item is a subscription ID (?!)
invoice_id = "in_1NZsHnI9qXomtXqSetBMGLC2"
invoice = stripe.Invoice.retrieve(invoice_id)
invoice_lines = invoice["lines"]["data"]
for il in invoice_lines:
print(il.id) # is a `sub_xxx`
Hello stripe devs , i want to save card for futur useage , but if the card is 3ds authentication required card , it save it without 3ds auth , when i want to use it to pay , it throws an error
Hello Good Morning Stripe, Everytime i try to install stripe on raspberry pi it returns this
Hello, while editing a price on a given product, I've noticed this (see screenshot).
I wonder what's the recommended way then to set the number of free trial days?
For now I'm doing it through code but I'd rather prefer to have this defined in Stripe so that non developpers people can change it easily when needed and I'd just listen to an event and save the number of days in a database. But now that this field is deprecated, I'm not sure what's my best course of action?
i set test clock how can check my webhook event is working or not
When creating a session through checkout, the placed metadata information does not appear now
In the payment_intent.succeeded event?
Hi, can somebody please help with a CSP issue im receiving.
I have a CSP set of: header("Content-Security-Policy: script-src * 'self' 'unsafe-inline'; style-src * 'self' 'unsafe-inline'");
As can be seen here:
Yet everytime I click to submit card details 2 errors appear in my console
Hi there,
Can I use Apple Pay in Google chrome browser ?
adamgp
Hi i need a help. I am integrating stripe for a project. I need to create an order for a product added in stripe. In the API docs it showing that https://stripe.com/docs/api/orders_legacy is deprecated and https://stripe.com/docs/api/orders_v2 is in beta. Which is the recommended API to work with orders ?
When a user subscribes to a payment and the webhook is triggered - I receive the plan id but how can I get the plan name?
hey i have an error with a subscription required a payment method , but the payment method is there
Why is my webhook running twice after only being triggered once, It happened all of the sudden
Hello there!
Could someone help me?
Could not find that info into docs: Could a transaction have few disputes? or only one dispute could be created for a transaction?
Hi, how can trigger mail to customers for complete 3D secure payment.
I am also enabled on dashboard billing section
Hi, if we create a payment intent for a bank transfer for £15, and then someone transferred £12 to the correct details making the bank transfer payment intent partially paid, is there a way to refund that payment intent or can you only refund bank transfer payment intents once they've been fully paid?
Hi Folks, I've configured my account to listen to all events however I can't seem to understand why no webhook events are being emitted for a transfer I've just created.
Hi there! How to cancel subscription schedule at the end of the current period, like the common subscriptions
cancel_at_period_end: true?
I have a question about webhooks (I had asked this previously but got disconnected(
Canceled Subscriptions and invoice.finalized event in Test-Mode.
Hi, on our implementation we further process invoices when we receive the invoice.finalized event via webhook. For testing reasons I wanted to create a refund-invoice today but wasn't able to in test-mode since only an invoice.updated event was send. Is this because I'm in test-mode or is invoice.finalized not send for cancellation invoices in general? Also I noticed, that the invoice.updated event was naming the billing_reason subscription_create wich is not what I would expect.
Hi .. I have a weird situation on my checkout process using Apple Pay. We use Stripe generated checkout pages with shipping address and everything works for Google Pay/CC but not with apple pay. It keeps reporting Invalid post code error in shipping address fields when it is already there.. ? any one has experienced the same or want to Shed Light on this one please... Thanks in advance.
how do i set default_payment_method while creating a checkout session:
await stripe.checkout.sessions.create
Hi devs. Not a priority issue, so help others before me, but my application had a payment outage yesterday. It happened when a team member created a new payment link (plink) in the Stripe dashboard, after which my application failed to retrieve the Price of a Product, causing the app to crash. When the payment link was removed, the application began working again. I would like to understand what went wrong, and how I can adjust my API usage to be tolerant of payment link creations. I think I'm going to need some help in framing my issue first, because it seems like there's a few moving parts. Thanks in advance.
how can i payout to connect account from stripe to connect bank account's
Hi
Is there a way to implement 'issuingCardNumberDisplay'(https://stripe.com/docs/issuing/elements) in Flutter? We want to show the card number on click of the 'show card number' button
Sorry, my thread was closed.. I test cancel subscription schedule and you recommended me update the subscription. My question is: I need to keep only the current phase and set end_behavior='cancel' ? How I get the actual phase from the subscription object?
Hello, I am creating a marketplace website, with Hivepress. I want to set up stripe connect with the website, so when a payment is made, the money goes to a main account(mine) and then automatically to the vendor. Is it possible to this with no coding? If not am willing to pay your team to set it up for me. Thank You
Hi, I have a question regarding subscription invoices transistioning from "draft" to "paid" status. For some of my customers I noticed that there's a 2-3 days delay between automatic creation of draft invoice and actual payment going through. In the meantime the subscription changes status from "trial" to "active" but the payment is not yet recorded which causes some confusion for my customers. For some of them I need to go an manually finalize the invoice.
My qustion is why is that happening for some of the account and is there a way to avoid it.
Here are 2 examples:
-
https://dashboard.stripe.com/acct_1I8B6fB4Bsy9RKZH/subscriptions/sub_1NNG1SB4Bsy9RKZHkr4BG1Xf
Subscription with 1-month trial started on 26/06. On 26/07 the draft invoice was created, but wasn't finalized until I manually did it on 28/07. -
https://dashboard.stripe.com/acct_1I8B6fB4Bsy9RKZH/subscriptions/sub_1LER1qB4Bsy9RKZHib4z0Pvj
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Hey there Stripe team. I'm having some trouble understanding how to implement the docs to my use-case, and have a bunch of questions re. it. How do I go about that? Should I just reply to this message here and ask them?
Hi I paid for something from a business via stripe and I am not getting what I want and they are not issuing refund
Hey, i have a question : How do I delete the created APIs? I enter the password and Verification code required appears. What am I doing wrong?
Hey, can you also help with Wisepad 3 related issues?
Grab pay and pay now preview showing but not able to click
i am new to stripe intergration i followed express checkout but it showing empty card https://stripe.com/docs/elements/express-checkout-element/accept-a-payment this is link which i followed please help me
Hi Team 🙂
After stripe checkout, the page call a return URL. but it opens a new window on mobile browser.
is there any options to open the return url at the same browser(tab) on mobile device?
now the return url is built with firebase dynamic url. 🙂
Thanks in advance~
hello!
possible to create 3 years trial period?
Hello Everyone!
I want to hold the funds in the connected account and when using the transfers api.
To whom it may concern - I'm trying to create a subscription schedule phase via the API, but I'm getting an error that "A phase cannot have multiple items with the same price". Why would this be the case? Could it really be the case, that if I want to handle an order where several of the same items are ordered, I cannot do this via the API?
when i manualy payout from stripe plateform then button are disable ?
and if when i used api for payout to the bank account then are working
Hi, Can anyone help me? I want to how to create a charge dispute from stripe dashboard?
Can someone help me with this issue with google pay?
Uncaught DOMException: Failed to execute 'postMessage' on 'Window': Delegation is not allowed without transient user activation.
Also, why I am not seeing Google Pay option during local development? Is it because SSL is self signed?
Right now I am summarizing transactions by date and creating a report for my bookkeeper. My totals a super close to the corresponding payout amounts. But i'm missing some of the fees (radar, etc). What is the best way to handle this? I see in the Stripe dashboard I can see the transactions for a payout. So my thought was to work starting from the payout FIRST. Get all the fees, charges, and refunds so this way everything would add up. Is that a better method?
In the Payout API what's the best way to get those transactions and fees? Can it be expanded in the Payout API, or do I need to do a multi step call?
nikolakg80
payment_method_options.card.request_three_d_secure has two possible values: any/automatic.
When set to 'any', 3DS is performed everytime. However, there is not much information on the behaviour of 'automatic'. What conditions have to be met in order for 3DS to trigger under 'automatic'?
Hi there, getting error "infinite loop detected review the trace for the looping path" on Order place magento 2.4.2 after installing stripe 3.4.0 ,
Hi,When we use the cancel checkout session interface, 400 appears, but our developers can't see this prompt 404
I have a question about failed payment intent webhooks
For "inclusive" tax calculation, I am not sure if the the calculation tax amout shown is correct. For example, if tax rate is 8.25% and Sub-total amount is $313.75 then tax amount should be $25.88 not $23.92 as shown on Stripe hosted UI. See the attached file.
Im saving payment method for future usage , i tested with these two cards (3ds card) 4000002760003184 and 4000000000003063
for the first one when create a subscription with the paymentMEthod as param , it return action required then i confirm the authentication and it works , for the second one it dosent return that , but failed to charge with generic charge , why ? when both of them are 3ds
👋 Hello! Just looking for confirmation in behavior - I have an annual subscription with pending_invoice_item_interval set to a monthly cadence (prorations should be collected at at month instead of subscription renewal.
I was like to use stripe.invoices.retrieveUpcoming API to preview an invoice with a proration-only change. What I'm looking to confirm is what I'm learning is that this API ignores pending_invoice_item_interval behavior and always returns the previewed invoice to include the renewal + proration with next_payment_attempt pointing at renewal instead of the monthly interval.
Additional context is that I am using the parameters of subscription_proration_behavior with create_prorations and subscription_proration_date of the current time
I have this checked in my only payment link but when the webhook gets triggered the phone property is always null "phone": null,. I am listening for charge.succeeded
the the the Hello, Is there any way to receive email in the test mode when purchase is made successfully?
Hey,I have recently made a stripe account but I had written my email incorrectly,instead of writing .com I wrote .con . This has made it very difficult for me as I’m trying to reset my password as I forgot it but I cannot because I had written my email incorrectly.
If a customer has a traditional account with credit card information that is saved in Stripe's Payment Element and they also have a Link account, are those two accounts treated as two separate accounts and is any information shared between the customers Stripe account and their Link Account such as sales history, credit card info, address book etc...?
Hi! I'm building a multi-region Stripe Connect platform. Each region has its own webhook endpoint, and all my Connect events go to every endpoint.
I need to implement some lightweight logic to make events region-specific. For example if an account/customer/invoice/checkout/whatever API request is made from region 1, then any webhook events associated with that request should only be processed by region 1. All the other regions can discard them.
Would metadata be the best approach? I was thinking of setting a region_id metadata entry for all outgoing requests, and then ignoring all incoming events without the correct region_id.
Hello - I am reaching out again about a issue with our paymentRequest.update getting called twice during a click evet. Here is the follow up from a previous message last week
#dev-help message
Hello! I'm trying to match payment intents with actual transactions leaving stripe (via the Balance Transaction API). Is there a delay between a PaymentIntent's 'success' event and the corresponding Balance Transaction being posted? Or do they happen at the same time?
hello, i followed this tutoral to make an invoice which should be payed by payment intent and element payment: https://stripe.com/docs/invoicing/integration?locale=fr-FR
But I receive "nothing to invoice for customer" error executing:
$invoice = $stripe->invoices->create([
'customer' => $customer_id,
'collection_method' => 'send_invoice',
'days_until_due' => 30,
]);
I dont understand where does the error come. I added some product in stripe.
When creating a Subscription, is it possible to have it 'tag' the Invoices which it creates with certain metadata?
Hi there, is there a way I can change the price_id. I recently saw an old project and the price_ids there were custom names. Lookup keys did not exist at all. How is this possible?
Can someone help me Stripe webhook error:
{
"exception":
{
"class":
"Error",
"message":
"Call to undefined method Spatie\StripeWebhooks\ProcessStripeWebhookJob::storeWebhook()",
"code":
0,
"file":
"/var/task/vendor/spatie/laravel-webhook-client/src/WebhookProcessor.php:48"
},
"aws_request_id":
"433934f7-171a-4f21-a30b-ecbcd3a4032d"
}
Hey Stripe gurus! Is there a way to get all the settings for an account via API? By settings, I mean all the stuff that's configured via the gear icon in the upper left corner of the Stripe dashboard. We're using separate Stripe accounts for dev, stage, and prod and I'd like to be able to compare the settings between those accounts so I can confirm I'm testing the same settings as I'm deploying. (Or even better...is there a Terraform or other IaaC approach for Stripe?)
How can I force a required update on a simulated reader using the Android SDK
hello, i followed this tutoral to make an invoice which should be payed by payment intent and element payment: https://stripe.com/docs/invoicing/integration?locale=fr-FR
But now, i cant get client secret with $invoice->payment_intent->client_secret;
$invoice = $stripe->invoices->create([
'customer' => $customer_id,
'collection_method' => 'send_invoice',
'days_until_due' => 30,
]);
I dont understand where does the error come. I added some product in stripe.
Hey everyone!
I looked online, and haven't found anything concrete about e2e testing payments using a wallet (Apple Pay, G Pay, Link...) with Stripe. Is there any way I can setup e2e test for a wallet without making real payments, or using a real wallet config ?
Hello everyone i am numan i wanna active my payment method but the problem is im not having the company registraion because its my personal work and i dont know how do i active my payment gateway can anyone help please what should i do
Hi, when testing card 4000000000003063 we are getting a generic decline. the description of this card is: The payment must complete 3DS authentication to be successful. By default, your Radar rules request 3DS authentication for this card.
Do you need a business to test stripe's api? Can we use it for our own personal projects
Hello,
My name is Vitalii.
I am trying to integrate Stripe "Payment Element" into our system.
And we are getting error when we trying to create the element in our code that "IntegrationError: In order to create a payment element, you must pass a valid PaymentIntent or SetupIntent client secret when creating the Elements group. e.g. stripe.elements({clientSecret: "{{CLIENT_SECRET}}"})"
However in your docs said that we can create the element without PaymentIntent.
Could you please help us with it.
Hi all. We're close to launching our SaaS project and are using Stripe for payments. Users pay via a Stripe pricing table, Stripe sends us a webhook, and we generate a one-time token for users to top up app credits.
Quick question: Since we're only dealing with one-time credit card payments and no subscriptions, do we just need to handle the checkout.session.completed event from Stripe's webhook endpoint? Or is there other event types that we must be aware of to avoid missing payments? Thanks!
Hi, I want to implement a custom subscription handling in my application, after user permission I store their payment method id (card/bank) and customer Id and using a aws lambad function which check if it's subscription date so it run and create payment intent using above mention data.
Just want to confirm that this is the right way to handle if I want to handle subscription myself
Contact support is innactive. How to contact them if nobody ansower for more then 4 days
I'm looking at the tax/registrations page and I want to add a registration Liechtenstein. Is this possible?
ey yo, apple is being stupid.... what the heck
Hi there
I want to create a direct charges
I'm using checkout sessions
any idea about acheiving that please
Hello,
I am sending the invoice hosted_url to the user to pay the invoice, but I want to add the Google Pay and Ali Pay in it, can you guide me about it?
Is there a way to only return 'available' transactions from the "List all balance transactions" API endpoint?
I'm using stripe connect in my dev environment, I use my UI to put a card payment through (with card 424242...) and I can see the payment go to the connected account in the dashboard and it's 'Successful', but the stripe webhook for payment_intent.succeeded isn't firing (it's not that I'm not receiving it, I can see the webhook's logs, and it's simply not firing). Any ideas why?
Contact support is innactive on Email and Live Chat and I can't call Stripe because I have a bad English. How to contact them if nobody answer for more then 4 days ?
Hey, I have a question: Am I safe to add any information (i.e. Invoices, Charges, Payment Intents, PaymentMethods, Customers, etc) I get from the Stripe API to my own database or are there certain things I should worry about (such as any sensitive data, etc)?
hey i created a subscription with api , setting up payment method on the creation , but the subscription response did not contain invoices
Hi, is there a way to enforce debit card as the only payment method in the checkout flow?
Thank you
@vivid jasper here's my code
const stripe = Stripe(stripePublishableKey);
const options = {
mode: 'payment',
amount: 1099,
currency: 'usd',
// Fully customizable with appearance API.
appearance: {/.../},
};
// Set up Stripe.js and Elements to use in checkout form
const elements = stripe.elements(options);
// Create and mount the Payment Element
const paymentElement = elements.create('payment');
what happen if i does not give location permission for reader discovery and connect reader in ios?
Hello. How to know SetupIntent is successed with setup_intent id?
hello, someone can explain this errors ?
PaymentMethods of type 'bancontact' cannot be saved to customers.(Status 400) (Request req_j3XFAZ6qr1Of9y) The PaymentMethod provided (bancontact) is not allowed for this PaymentIntent. Please attach a PaymentMethod of one of the following types: card. Alternatively, update the allowed payment_method_types for this PaymentIntent to include "bancontact".```
Good evening, I have successfully implemented Stripe both on my webapp and on the Android webview, but I am encountering some issues when publishing my iOS webView as Apple is responding in the following way, rejecting my app's review (I quote Apple): "We noticed that your app includes or accesses paid digital content, services, or functionality by means other than in-app purchase, which is not appropriate for the App Store. Specifically:
The paid digital features can be purchased in the app using payment mechanisms other than in-app purchase.
The paid digital content, services, or subscriptions included in or accessed by your app must be available for purchase using in-app purchase.". Do you have a solution for this?
Does the address element follow the ISO 3166-1/2 2 letter code standard? For countries and subdivisions.
Bonjour,
Nous sommes 2 personnes qui utilisons stripe sur nos téléphones respectifs. L'un à la possibilité de créer des liens de paiements néanmoins l'autre ne peut qu envoyer qu' un montant de paiement.
Ma question , y a til un développeur et un en consultant malgré tout . ?
Merci à la team
hi,
I use the checkout process (where my customer is redirect to your website to pay) and the metadata are not shared on the webhook. (but there are displayed on my dashboard on stripe dot com)
We want to add a custom question to an invoice page, is this possible?
Hi there, I am using the payments element and embedding it as part of a larger form with zod and react-hook-form. Is there a way to validate that the payment element has been filled out? Some state that gets exposed from a context maybe?
Hi all, I am going a bit crazy, but Captcha won't let me login! It just keeps giving me new pictures...any advice?
Hi there guys, just a question regarding the PayPal Integration. For recurring payments i need permission from PayPal. So i contacted them and they said, that "normal" recurring payments do not need permission, however the stripe payment is so constructed that its a "reference-transaction" which needs more permission, because basically it allows you to make anytime payments without needing the permission from customer,. Obviously not everyone can have this feature because of security concern. So my last option is just to directly integrate PayPal on the website?
Hi guys, I have a problem with the webhook and the PrestaShop platform, it keeps giving me webhook errors, but I haven't configured anything as I use your official module..
If I try to visit the webhook link it says "Unable to extract timestamp and signatures from header"..
How can I fix it?
What would be the best way to add custom fields to all the invoices that are set up via a subscription schedule? It doesn't appear that I can pass anything in that call that would allow me to pass custom fields.
When using stripe tax if we don't add any manual registrations, but still pass along the flag for auto-tax to be calculated/included will the monitoring start adding sales tax when we pass the thresholds for a given jurisdiction?
@crimson needle I just checked, elements variable is set inside the the onclick handler, and represents form inputs: https://jsfiddle.net/bf1x839s/
Hello, my stripe customer portal is different than the ones I see in the preview of the Stipe Dashboard, specifically, it misses the "current plan" part. Cancellations and Subscriptions updates are allows in customer portal settings
Screenshot1: what the user actually sees, screenshot2: what the user should see according to customer portal preview in Stripe Dash
Hey, I am testing out some Connect integration, I keep getting " Insufficient funds in Stripe account. In test mode, you can add funds to your available balance (bypassing your pending balance) by creating a charge with 4000 0000 0000 0077 as the card number. " But I added currency in test mode for GBP/USD/EUR, still getting it.
Any reason why the API docs don't mention ephemeral keys? But the openapi spec does have the type and endpoints.
Hello I am trying to make a request using postman to the https://api.stripe.com/v1/accounts/[account_id] endpoint to update a connect users account (specifically their support email). I am getting a success code and receiving a response. However, when I inspect that response, it doesn't seem like anything is actually being updated.
Looking for a list of client-side iframe events other than 3DS-authentication-complete
I set up a Connect webhook for account.updated. I had missed this sitting, and accidentally left it as the default. I've changed it now (to 'events on connected accounts'). But something I can't figure out is why was it working before when it was misconfigured?
Hi ! I have a plan with 7 days of trial, but when i subscribe to it (via API), its directly pay it (and set him in the Active status) without giving me the 7 days of trial. Could you help me to find what i missed please ?
Thank you !
Is it possible to change this disclaimer, or add additional disclaimers to this section of an invoice payment page?
How can I get the quantity(what's in the image) from a Session object(com.stripe.model.checkout.Session)?
Good morning,
We are 2 people using the band on our respective phones. One with the possibility of creating payment links can nevertheless send only a payment amount.
My question, is there a developer and a consultant despite everything. ?
Thanks to the team
hello
We are a UK based company using stripe and through Issuing capability and using API I have managed to generate the card holder and eveern card too , however in my dashboard shows no card under this card holder name
can you help plz
I have a price X for month and it will expire the subscription. Instead of expiring subscription I want to automatically change plan to Y. How can I do with subscrpiiton schedules?
Hi there. Can I GET a subscription that is scheduled?
hi team, I want to export a list of all payment intents which are partially paid via bank_transfer. In the object the property is called: next_action.display_bank_transfer_instructions.amount_remaining Is there any chance to export this either API or dashboard?
is there a way to attach a discount to a specific email address?
Hello there, I am a docker newbie, and I have 3 containers:
- stripe cli, backend, frontend
Is there a way to use the --print-secret flag returned value to be passed over from the stripe container to the backend container so that it uses that value when I define the environment variables there?
If not, or it doesnt matter if: the produced whsec never changes anyway, in that case is it legitimate to just have the secret generated once, put it into the .env file for the backend container to read it and never bother changing it again?
Hi there. I was wondering if you could help me brain storm this, and maybe find the right way to implement this (I'll use an analogy & sort of indicate what I've understood so far). If let's say I were EA games, and I'm selling three games.
- If I wanted people to have indefinite access, and to pay once: I'd use paymentIntents? Or Invoices?
- If I wanted people to pay once for 3 months, with the intent that they're likely not going to get it again -- i'd still use paymentIntents/invoices/checkout.
- If I wanted it to be recurring, I'd use paymentIntent or subscriptions.
Each of the 3 games, I think will be products, each with a product ID. Each gamer will be a customer. And each customer could purchase 1+ games: each purchase attempt would create a paymentIntent (I would have to limit logic on my end to not buy more than 1 unique game per customer). This one paymentIntent (and its status) can be used as a paywall on the product (the whole game and every level in it).
--I could basically add the customerID and the productID (in the metadata) to the payment intent, and each time the customer tries to access it, I can query Stripe to see if their paymentIntent.status is "confirmed" to allow them access (alternatively, I can save that state on my backend -- whichever).
^I think I have a hang of this so far? Does this so far sound right?
hello something wrong on the site its ask me for 18+ verify i sent my id like 5 times still not worked
Hi! I've made a payment site using Next.js and Typescript and did the payment processing using Authorize.net, but now I'm switching to Stripe. Do yall have any advice on which integration set up I should use? My site pulls order details from my database and then I created a payment form (billing address and credit card details). With Authorize.net, I would capture those payment details and submit it along with the order details (line items and prices, tax, freight, invoice number, etc.) to the Authorize API and the transaction would be authorized and payment would be captured.
hi, is there anyway to opt for UPI as soon as possible
When using card 4000002760003184 and declining authentication in the 3DS iframe for a PaymentIntent, the status of that PaymentIntent still changes to requires_payment_method instead of requires_authentication
Hello
Hi I am currently using kotlin to connect my app to my in person stripe terminal (BBPOS WisePOS E) - logs are saying it is connected to reader and I have implemented the collectPaymentMethod but the UI is not changing on the terminal when I go to collect payment
If using the api checkout process to create a subscription, is it accurate that there is only an application fee percent and not a flat amount that can be applied each payment?
Hi
Anyone can help me with managing the Good-best-better subscription pricing for my web SaaS app? I need help if someone wants to add additional seat after paying.
On the screenshots here https://stripe.com/docs/payments/accept-a-payment?platform=react-native&ui=payment-sheet#react-native-apple-pay
It show apple paty at the top of the popover screen
When rendering the payment sheet within my app I only see it here
Hi
Anyone can help me with managing the Good-best-better subscription pricing for my web SaaS app? I need help if someone wants to add additional seat after paying.
hi , i need help
Hello,
a question, im trying to connect between two payments one is on a connect account (custom account) and the other is on the main account via adding the id to payments metadata, but the link that is added to the Id is incorrect.
A connected payment that has a link to the main account will try to find the payment in connected account and the payment in main account will try to find in a main account (instead of linking to the connected account)
Very poor support
Does advancing clock work for 1 year time limit?
i have some queries related to 3d secure authentication
HI there! Is it a way to obtain, via API, the whole event object only from the charge id?
Hi there i have problem at my stripe account as following photos
How can I route certain payments to certain bank accounts within Stripe?
@lilac mirage please keep the messages in the thread
I have created the payment link, but when I use it same email, it created the customer everytime. I want to control this behaviour from dashboard how can I do this?