#Ramon Tiago

1 messages · Page 1 of 1 (latest)

opaque nacelleBOT
ornate vine
#

Hi there!

#

I'm not sure I understand your question. Can you clarify what you are trying to do?

opaque nacelleBOT
tacit elbow
#

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 )

iron bear
#

👋 taking over for my colleague. Let me catch up.

tacit elbow
#

thanks!

iron bear
#

I'm not sure I follow, what's the question here?

tacit elbow
#

How do I use the same card for credit and debit card payments?

iron bear
#

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

tacit elbow
#

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?

iron bear
#

this is not really a Stripe related question