Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Make payment using stripe payment API

$charge = StripeCharge::create(array(

                'amount' => $orderTotal,  //total amount that will be paid by the user.

                'currency' => 'inr',            //currency in which he is paying

                'customer' => $customer->id, 

                'description' => 'Test Purchase', //Payment description

            ));
Source by techtechinfo.com #
 
PREVIOUS NEXT
Tagged: #Make #payment #stripe #payment #API
ADD COMMENT
Topic
Name
4+4 =