ZuelPay
  1. Bus Booking API
  • 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
    • Biller Lists
    • Biller Fetch
    • Biller Payment
  • Gift Card/ Brand Voucher API
    • Get Category
    • Brand Lists
    • Buy Giftcard Voucher
  • webhook/callback
    • webhook
  • Recharge Validation API
    • validation
  • PAYOUT API
    • payment
  • Flight Booking API
    • cityList
    • flightList
    • flightRePrice
    • flightBook
  • Bus Booking API
    • cityList
      GET
    • searchBus
      GET
    • seatLayout
      POST
    • blockSeat
      POST
    • bookSeat
      GET
    • cancelTicket
      POST
  1. Bus Booking API

cancelTicket

POST
/travel/bus/cancelTicket
S.NoAttributeDescriptionsRequired
1etsTicketNoetsTicketNo from bus book responsetrue
2seatNbrsToCancelList seat numbers to canceltrue
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/travel/bus/cancelTicket' \
--header 'Token: ZKEYza2COHK0QVkcVkwUb6WeIgWiS' \
--header 'checkSum: 739f448d1cc4f5bbbd048e68ba2b8885b0f8414ed4090ad967df7d15d7cdbbae' \
--header 'Content-Type: application/json' \
--data-raw '{
    "etsTicketNo": "ETS950B0PT10530",
    "seatNbrsToCancel": [
        "3L"
    ]
}'
Response Response Example
{
    "totalTicketFare": "450.00",
    "totalRefundAmount": "337.5",
    "cancelChargesPercentage": "25 %",
    "cancellationCharges": 112.5,
    "apiStatus": {
        "message": "SUCCESS",
        "success": true
    },
    "cancellable": true,
    "partiallyCancellable": false
}

Request

Header Params
Token
string 
required
Example:
ZKEYza2COHK0QVkcVkwUb6WeIgWiS
checkSum
string 
required
Example:
739f448d1cc4f5bbbd048e68ba2b8885b0f8414ed4090ad967df7d15d7cdbbae
Body Params application/json
etsTicketNo
string 
required
seatNbrsToCancel
array[string]
required
Examples

Responses

🟢200success
application/json
Body
totalTicketFare
string 
required
totalRefundAmount
string 
required
cancelChargesPercentage
string 
required
cancellationCharges
number 
required
apiStatus
object 
required
message
string 
required
success
boolean 
required
cancellable
boolean 
required
partiallyCancellable
boolean 
required
Previous
bookSeat
Built with