Change parametyers

This commit is contained in:
CHIEFSOFT\ameye
2024-10-20 08:21:09 -04:00
parent 1d2668cddd
commit e851bca209
+3 -3
View File
@@ -39,14 +39,14 @@ var cards = {
logger.info("READY FOR STRIPE CALL ",req_data);
const cardholder = await stripe.issuing.cardholders.create({
name: 'Olu Test',
name: req_data.name,
email: 'jenny.rosen@example.com',
phone_number: '+18008675309',
status: 'active',
type: 'individual',
individual: {
first_name: 'Olu',
last_name: 'Test',
first_name: req_data.firstname,
last_name: req_data.lastname,
dob: {day: 1, month: 11, year: 1981},
},
billing: {