#isaacboy-card-number

1 messages · Page 1 of 1 (latest)

shadow valve
#

if you're using stripe.js/checkout, this is never possible, in testmode or otherwise

#

having a setup where you don't have access to full card details is an explicit feature / design goal tbc, because it reduces the amount of PCI compliance work you need to do

#

why do you actually want to see the full card number here? if you just want to be able to charge them later, you can store the card number in stripe to charge it, without having direct access to the raw card details: https://stripe.com/docs/payments/save-and-reuse

Learn how to save card details and charge your customers later.

iron lotus
#

@shadow valve hey hey thats for advise , i have a plugin can let clients leave their card details and be charged later . reason why i need them to leave they details is to act as a guarrantee . some many clients make reservations to the hotel but dont come

#

@shadow valve most that book and dont come make it hard for other to reserve rooms to the hotel

#

@shadow valve we have seen it booking.com, clients leave their credit card details as a guarantee

#

i was thinking if the card details go to stripe then we can communciate with the client and charge her a fee for not cancelling using our TPE

shadow valve
#

right, but as I mentioned above, you can save the card details in stripe to be able to charge the customer later without needing to see the full credit card number

iron lotus
#

yes i have tested and i see that the customer is registered and only the last four digists are seen

#

so we dont want to charge them using stripe but just to capture card details to use on our hotel TPE. is that passible?

shadow valve
#

no; if you collect the card details via stripe.js/checkout, you can't get the full credit card number back out

#

you can collect the card number yourself, but then you're no longer eligible for PCI SAQ A, and are likely in scope for SAQ D, which is quite onerous

iron lotus
#

ok

#

thanks