#L0rdandBooz
1 messages · Page 1 of 1 (latest)
Here is my code; I'm following this guide https://stripe.com/docs/treasury/examples/financial-accounts#creating-payment-cards
const card = await stripe.issuing.cards.create( { currency: 'usd', type: 'physical', cardholder: dbUser.cardholderID, financial_account: dbUser.financialAccountID, shipping: { name: cardholder.name, address: { line1: cardholder.billing.address.line1, city: cardholder.billing.address.city, state: cardholder.billing.address.state, postal_code: cardholder.billing.address.postal_code, country: cardholder.billing.address.country, }, } }, {stripeAccount: dbUser.connectAccountID} );
Hi, taking a look here
Thank you!
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
It looks like it should work from what I can tell; here it is on the create card method in the docs.
I need some time to further investigate this, still looking
No problem. Thank you for your help!
It looks like the documentation says the financial_account is a preview feature
Does this mean it isn't live yet?
Or is there some way for me to be added to the preview?
I'm not sure why it would be included in the guide if it wasn't working though
I see, you'd need to reach out to Stripe support with this. Our support team will be able to assist you better than I can: https://support.stripe.com/contact
What does a preview feature mean?
You'd need to reach out to support for these I'm afraid.
OK thanks
I appreciate you trying
Is there anyone else in the discord that may know?
I've confirmed with my teammate on my end as well to make sure that I was providing good guidance.