Change parametyers
This commit is contained in:
+3
-3
@@ -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: {
|
||||
|
||||
Reference in New Issue
Block a user