This API gives you the status of the transaction. PayU recommends this API to reconcile with PayU’s database after you receive the response, where var1 is your transaction id.
Following features are supported in the PayU Python web SDK:
- Create Payment Link.
- Verify transactions, check the transaction status, transaction details, or discount rate for a transaction
- Initiated refunds, cancel refund, check refund status.
- Retrieve settlement details which the bank has to settle you.
- Get information of the payment options, offers, recommendations, and downtime details.
- Check the customer’s eligibility for EMI and get the EMI amount according to interest
- Pay by link To get started with PayU, visit our Developer Guide
pip install payu_websdk
import payu_websdk
client = payu_websdk.Client(<KEY>,<SALT>,<ENV>) # Need to set merchant key,salt and env ("TEST"/"LIVE")
Method | Description |
---|---|
verifyPayment | Provides the details of a transaction |
RefundTransaction | Initiate refunds. |
BinAPI | check the bin info. |
EligibleBinsForEMI | Used for checking the card eligibilty for EMI through the bin number.. |
EmiAmountAccordingToInterest | Used to fetch interest accordign to Banks and tenure.. |
settlementAPI | Used to fetch settlement details for a particular date.. |
getNetbankingStatus | Check downtime status of PGs.. |
getIssuingBankStatus | Check downtime through bin number.. |
InvoiceAPIs | Used to create email and SMS invoice ( Pay by link ). |