test
curl --location -g --request POST '{{Base URL}}/api/v1/order/create' \
--form 'appId="{{appId}}"' \
--form 'secretKey="{{secretKey}}"' \
--form 'orderId="order_00112"' \
--form 'orderAmount="1"' \
--form 'orderCurrency="INR"' \
--form 'orderNote="Test order"' \
--form 'customerEmail="sample@gmail.com"' \
--form 'customerName="Cashfree User"' \
--form 'customerPhone="9999999999"' \
--form 'merchantData="eyJuYW1lIjoicmFqIiwgIm1vZCI6ICJ0ZXN0In0="' \
--form 'returnUrl="http://localhost/handleResponse.php"' \
--form 'notifyUrl="http://localhost/handlePaymentStatus.php"'
Comments
Post a Comment