BusCancellation

Post   https://travel.bospay.co.in/api/V1/Bus/Travel/BusCancellation


The BusCancellation API is used to cancel one or more seats/tickets from a bus booking. It returns details such as cancellation penalty, affected seat numbers, ticket numbers, and cancellation status. This API also provides diagnostic information to help identify if a cancellation has already been processed or partially failed.

Note:The value for 'cancellationCharge_Key' will be obtained from 'BusCancellationCharges.

Body Parameters
{
    "booking_RefNo": "BBB6YLRP",
    "busTicketstoCancel": [
      {
        "seat_Number": "14",
        "ticket_Number": "BBB6YLRP0",
        "transport_PNR": "7AKE22CH"
      } 
    ],
    "cancellationCharge_Key": "XX6723557823XX",
    "iP_Address": "27.XXX.XX.76",
    "request_Id": "REQ123456",
    "imeI_Number": "353535353535353",
    "registrationID": "AOP-554"
}
Request Parameters
Name Type Description
booking_RefNo String This requires the booking reference number, which is obtained from the Bus_TempBooking response.
seat_Number String This requires the seat number.
ticket_Number String This requires the ticket number.
Responses

200

200

Response

200

RESPONSE BODY

Json

401

401

Response

401

RESPONSE BODY

Object

responsecode integer

status boolean

message string


Did this page help you?     Yes    No

Language
shell Shell
python Python
node Node
c# C#
php PHP

cURL

curl --location --request POST 'https://travel.bospay.co.in/api/V1/Bus/Travel/BusCancellation' \
--header 'Content-Type: application/json' \
--data  '{
  "booking_RefNo": "BBB6YLRP",
  "busTicketstoCancel": [
  { 
  "seat_Number": "14",
  "ticket_Number": "BBB6YLRP0",
  "transport_PNR": "7AKE22CH"
  } 
  ], 
  "cancellationCharge_Key": "XX6723557823XX,"
  "iP_Address": "27.XXX.XX.76",
  "request_Id": "REQ123456",
  "imeI_Number": "353535353535353",
  "registrationID": "AOP-554"
}'
                                
import requests
import json

url = 'https://travel.bospay.co.in/api/V1/Bus/Travel/BusCancellation'
payload = "{
 "booking_RefNo": "BBB6YLRP",
 "busTicketstoCancel": [
 { 
 "seat_Number": "14",
 "ticket_Number": "BBB6YLRP0",
 "transport_PNR": "7AKE22CH"
 } 
 ], 
 "cancellationCharge_Key": "XX6723557823XX,"
 "iP_Address": "27.XXX.XX.76",
 "request_Id": "REQ123456",
 "imeI_Number": "353535353535353",
 "registrationID": "AOP-554"
}" 

headers = {
  "Content-type" : "application/json"
}

response = requests.request("POST", url, headers=headers, data=payload)

print (response.text)
                                
var requests = require("request");
var options = { 
  "method" : "POST",
  "url" : 'https://travel.bospay.co.in/api/V1/Bus/Travel/BusCancellation',
  "headers" : {
    "Content-Type" : 'application/json'
  },
  body: '{
     "booking_RefNo": "BBB6YLRP",
     "busTicketstoCancel": [
     { 
     "seat_Number": "14",
     "ticket_Number": "BBB6YLRP0",
     "transport_PNR": "7AKE22CH"
     } 
     ], 
     "cancellationCharge_Key": "XX6723557823XX,"
     "iP_Address": "27.XXX.XX.76",
     "request_Id": "REQ123456",
     "imeI_Number": "353535353535353",
     "registrationID": "AOP-554"
  }' 
}; 
request(options, function(error, response){
   if(error) throw new Error(error);
   console.log(response.body); 
}); 
                                
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get,'https://travel.bospay.co.in/api/V1/Bus/Travel/BusCancellation')
var content = new StringContent(
  "{
     "booking_RefNo": "BBB6YLRP",
     "busTicketstoCancel": [
     { 
     "seat_Number": "14",
     "ticket_Number": "BBB6YLRP0",
     "transport_PNR": "7AKE22CH"
     } 
     ], 
     "cancellationCharge_Key": "XX6723557823XX,"
     "iP_Address": "27.XXX.XX.76",
     "request_Id": "REQ123456",
     "imeI_Number": "353535353535353",
 "registrationID": "AOP-554"
  }",
  null,"application/json"
); 

request.Content = content;
var response =  await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
                                
<?php
$curl =  curl_init();
curl_setopt_array($curl, array(
  CURLOPT_URL =>  'https://travel.bospay.co.in/api/V1/Bus/Travel/BusCancellation',
  CURLOPT_RETURNTRANSFER =>  true,
  CURLOPT_ENCODING =>  '',
  CURLOPT_MAXREDIRS =>  10,
  CURLOPT_TIMEOUT =>  0,
  CURLOPT_FOLLOWLOCATION =>  true,
  CURLOPT_HTTP_VERSION =>  CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST =>  'POST',
  CURLOPT_POSTFIELDS =>  '{
     "booking_RefNo": "BBB6YLRP",
     "busTicketstoCancel": [
     { 
     "seat_Number": "14",
     "ticket_Number": "BBB6YLRP0",
     "transport_PNR": "7AKE22CH"
     } 
     ], 
     "cancellationCharge_Key": "XX6723557823XX,"
     "iP_Address": "27.XXX.XX.76",
     "request_Id": "REQ123456",
     "imeI_Number": "353535353535353",
     "registrationID": "AOP-554"
  CURLOPT_HTTPHEADER =>  array(
    'Content-Type: application/json'
  ),
));
$response =  curl_exec($curl);
curl_close($curl);
echo $response;
                                

RESPONSE

200

401

-Result

Example

{
"cancellationPenaltyValues": [
   { 
       "cancellation_Penalty": 10,
       "seat_Number": 14,
       "ticket_Number": "BBB6YLRP0"
   } 
   ], 
"response_Header": {
    "error_Code": "0000",
    "error_Desc": "SUCCESS",
    "error_InnerException": "",
    "request_Id": "REQ123456",
    "status_Id": "11"
}, 
"statuss": "FALSE",
"message": "",
"value": ""
 }
                                
{
    "code": "207",
    "description": "Amount is Requaired",
    "merchantTrxnRefId": null,
    "token": null,
    "status": "False"
}