#Ramon Tiago
1 messages · Page 1 of 1 (latest)
Hi there!
I'm not sure I understand your question. Can you clarify what you are trying to do?
of course, for example, I just registered a card and I want to use that same card to make payments with credit and automatic debit cards.
Example:
card: xyz
purchase on debit with xyz card
const payment = {
description: "credit purchase",
capture_method: "automatic",
statement_descriptor: "credit purchase",
currency: "brl",
customer: "123",
setup_future_usage: "off_session",
source: "xyz",
confirm: "true",
amount: paymentDto.amount,
payment_method_types: [
"card"
]
}
const paymentIntent = await stripeAPI.paymentIntents.create(payment )
###########--##########--########
credit purchase with xyz card
const payment = {
description: "credit purchase",
capture_method: "automatic",
statement_descriptor: "credit purchase",
currency: "brl",
customer: "123",
setup_future_usage: "off_session",
source: "xyz",
confirm: "true",
amount: paymentDto.amount,
payment_method_types: [
"card"
]
}
const paymentIntent = await stripeAPI.paymentIntents.create(payment )
👋 taking over for my colleague. Let me catch up.
thanks!
I'm not sure I follow, what's the question here?
How do I use the same card for credit and debit card payments?
which card? is this Issuing? what do you mean for credit and debit payments?
cards are treated the same way in Stripe whether they're a debit or a credit card
and you can't have the same card being a credit and a debit card at the same time
I'm really not following where you're going with this
entendo.
I see, that's what I needed to know.
whether it was possible to have a card registered for credit and debit at the same time.
so it's not possible, correct?
this is not really a Stripe related question