skip to Main Content

Php – Retry Stripe transaction for Pending or Failed Payments

I'm creating a my stripe Payment Intent as follows using PHP. if($params['payment_method'] == 'stripe') { $paymentIntent = $stripe->paymentIntents->create([ 'shipping' => [ "name" => $uModel->full_name, "phone" => $params['billing_phone'], "address" => [ "city" => $params['billing_city'], "country" => $params['billing_country'], "line1" => $params['billing_address_1'], "line2"…

VIEW QUESTION
Back To Top
Search