ZuelPay
  1. webhook/callback
  • API DOCUMENTS
  • Auth
  • Account
    • balance
      POST
  • Verification API
    • pan
      POST
    • voter
      POST
    • aadhar-genrate-otp
      POST
    • aadhar-verify
      POST
    • upi
      POST
    • bank
      POST
    • licesnce
      POST
    • passport
      POST
    • GSTIN LookUp
      POST
    • FASTAG
      POST
  • Recharge API
    • operators
      GET
    • payment
      POST
  • UPI PAYMENT API
    • payment
      POST
  • Operator Lookup API
    • operator_lookup
      POST
  • Mobile Tariff Plans
    • mobile_recharge_plans
      POST
  • Utility Bill Pay API
    • Get Category
      GET
    • Biller Lists
      GET
    • Biller Fetch
      POST
    • Biller Payment
      POST
  • Gift Card/ Brand Voucher API
    • Get Category
    • Brand Lists
    • Buy Giftcard Voucher
  • webhook/callback
    • webhook
      POST
  • Recharge Validation API
    • validation
  1. webhook/callback

webhook

POST
/example
PARAMDEFAULT
billerOperator or Biller Name
agent_idagent id passed by Merchant
utrOperator Live Txn ID or Bank UTR Etc
statusPENDING, SUCCESS, FAILED
tlidzuelpay unique ID
action_typeRECHARGE,PAYOUT,BILL,GIFTCARD,BUS,FLIGHT,UTILITY
**
ADD WEBHOOK URL FROM YOUR ZuelPay Merchant PANEL TO GET REAL TIME RESPONSE.
**
For getting webhook response, you can use this PHP CODE:
$inputJSON = file_get_contents('php://input');
Example Webhook Response:
{
  "webhook_res": {
    "callback_status": "SUCCESS",
    "tlid": "ZRA1733743887997QWeIt70",
    "utr": "1842562376",
    "error": "Success",
    "biller": "Airtel Prepaid",
    "status": "SUCCESS",
    "agent_id": "ZLP0000000394430307KK09",
    "type": "webhook",
    "action_type": "RECHARGE",
    "timestamp": "2024-12-09 22:18:38"
  },
  "checkSum": "2763247139b91bf7f22bb943e808e818d3f09c7d467e7086fc4658b5d6003574"
}

WEBHOOK checkSum CREATE FORMAT:#

$string = pass as json data example below.
$secret = Use your zuelpay SECRET_KEY from API Settings Page
STRING JSON WILL BE LIKE :
pass the json webhook_res
{
    "callback_status": "SUCCESS",
    "tlid": "ZRA1733743887997QWeIt70",
    "utr": "1842562376",
    "error": "Success",
    "biller": "Airtel Prepaid",
    "status": "SUCCESS",
    "agent_id": "ZLP0000000394430307KK09",
    "type": "webhook",
    "action_type": "RECHARGE",
    "timestamp": "2024-12-09 22:18:38"
  }
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/example'
Response Response Example
{}

Request

None

Responses

🟢200Success
application/json
Body
object {0}
Previous
Buy Giftcard Voucher
Next
Recharge Validation API
Built with