#Debbi-add-pm

1 messages · Page 1 of 1 (latest)

rancid sable
#

Hey! There's a couple options really that will enable your customers to save new payment details. How do you currently integrate with Stripe?

worldly quest
#

with stripe php

#

$this->stripe->paymentMethods->create([
'type' => 'card',
'card' => [
'number' => $data['card_number'],
'exp_month' => $expDate[0],
'exp_year' => $expDate[1],
'cvc' => $data['cvc'],
],
]);

#

But now we need stripe provided any link for this

rancid sable
#

Are you PCI compliant to be handling raw card data that way?

worldly quest
#

No, thatswhy we need to change this

rancid sable
#

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

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

Learn how to integrate the customer portal.

worldly quest
#

actually we are trying to create a platform in which customer buy products or services with save card

#

And now we facing problem PCI complaints. we are not created a subscription application.

rancid sable
#

Yep, Checkout and Elements will work in that scenario to help your customers provide/save payment details

worldly quest
#

no we don't have any checkout or payment form.

#

firstly we need add save payment method to customers and after services delivered to customer and verified then we charge from customer saved or selected card

rancid sable
rancid sable
#

The links above show you how to do that

worldly quest
#

Okay with paymentintent we need to add any price amount pass in api params?

rancid sable
worldly quest
#

Okay, Thanks