#machineau
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
hi! should be possible yes. Overall what is the use case, what is the purpose of adding those cards?
i was talking to jack before, let me explain
we have a mobile app that uses stripe for ev charging payments. we use stripe connect, as customers pay, and the owners of charge point also get paid whilst we take a transaction fee for the platform use
the users link their credit card on the app, and the payment intent is processed against these cards
we wanted to implement a wallet function using credits, where users are able to purchase our credits like with $100, to buy like a credit. Then use from the credit instead of a linked card
original thought was to add this $100 as a customer credit and use it for payments if the balance was positive
but i was told that we cannot use payment intent with credit and only can do invoice
which means this does not work in our case
We have another situation, where we ran a promotion and 10 people won some credits that they can use in our platform. we thought of buying some prepaid visa cards, and then being able to add to their connected accounts ourselves, so they can use this credit until the balance is available
now that is the long context to this question, sorry for that
you still here @peak moon
yes.
sorry I'm not really following. Is there a specific API question here?
you can use https://stripe.com/docs/connect/authentication to make any API call on a connected account(like creating a Customer or creating a PaymentMethod or confirming an Intent or so on)
if i have a credit card, can i add it to a customer account ?
what is a "customer account"? Is that a Stripe Customer object cus_xxx , or a connected account acct_xxx ?
if we have a linked connect customer, can i add a prepaid credit card that i have to their account
I need more technical conext on what exactly a " linked connect customer" is and what objects in the Stripe API that corresponds to.
stripe offer a product called stripe standard connect
which enables a 3 way payment processing for a marketplace. we are that marketplace, and the end user customer who buy product is the customer
cool so it's just Direct Charges then right?
https://stripe.com/docs/connect/direct-charges
You have a platform, a connected account acct_xxx, and a customer cus_xxx object that is created on the connected account and that is where the PaymentMethod/PaymentIntents are created.
As mentioned above and in that doc, you can use https://stripe.com/docs/connect/authentication in those flows to create/update any object in the connected account.
but my question is, if i can add a credit card to that customer, myself
in the ui, i am able to see an option to add payment method, where i can add another card for that customer from my stripe ui
so my question is - can i add a prepaid visa card here, and set it to default.
not sure, this is a chat for developers and API questions, and the developer answer is you use the Stripe-Account header on an API request, such as on a page that uses a SetupIntent to accept and save a card to a Customer, happy to elaborate on technical details of that