Skip to content

Sightseeing Cancellation Charges
Run in Postman

/api/v1/reservation/sightseeing-cancellation-charges   
This service is used to get the cancellation charges for the sightseeing booking. In case supplier does not provide Standard Cancellation charges , A free text will be returned.

Sightseeing Cancellation Request

Sightseeing cancellation-policy mainly consists with bookingReferenceId .

Tags Attribute Description
bookingReferenceId bookingReferenceId*
(String)
This unique identifier helps track and manage bookings across API calls, ensuring accurate processing.



Sightseeing Cancellation Charge Request
1
2
3
{
  "bookingReferenceNumber": "BKR-2025-000004"
}


Sightseeing Cancellation Charge Response

After sending the sightseeing cancellation request Travlinq will provide you the cancellation charges for the specified sightseeing booking.

Tags Attribute Description
meta meta
(JsonObject)
success
(String)
Response status will be return Ex: "true"
statusCode
(Boolean)
Response statusCode will be return Ex: "1"
statusMessage
(String)
Response statusMessage will be return Ex: "SUCCESS"
actionType
(String)
Describes the type of action related to the response, in this case, "Marhaba cancellation policy."
conversationId
(String)
Unique ID associated with the conversation or request, "fe22cb8d-67e9-4c29-92af-e44dxxxcb9a9" in this example.
commonData commonData
(JsonObject)
This tag has the common Data in the response.
searchKey
(String)
A unique search ID, will be returned in the search response.
data data
(JsonArray)
cancellationCharge cancellationCharge
(JsonArray)
Contains the Cancellation Charge for the issue
supplierCancellationCharge
(Double)
Cancellation Charges recieved from Supplier
adminCancellationCharge
(Double)
Admin Cancellation Charges ( if applicable )
totalCancellationCharges
(Double)
Total Cancellation Charge forthe Sightseeing Booking
cancellationInfo cancellationInfo
(String)
Contains the Cancellation info about the booking, Will be returned if charges are not provided
Sightseeing cancellation-policy response
{
  "meta": {
    "success": true,
    "statusCode": 1,
    "statusMessage": "SUCCESS",
    "actionType": "Sightseeing Cancellation Charges",
    "conversationId": "6dbc1684-083d-4d72-b94f-63971d7511ce"
  },
  "data": [
    {
      "cancellationCharge": [
        {
          "supplierCancellationCharge": 0.0,
          "adminCancellationCharge": 0.0,
          "totalCancellationCharges": 0.0
        }
      ]
    }
  ],
  "version": "1.0.0"
}