Skip to content

Sightseeing Cancellation Policy
Run in Postman

/api/v1/sightseeing/cancellation-policy   
This service is used to get cancellation-policy for the specific sightseeing result.

Sightseeing Cancellation-Policy Request

Sightseeing cancellation-policy mainly consists with searchKey and offerId .

Tags Attribute Description
sightseeingCancellationPolicyCriteria (JsonObject)
searchKey*
(String)
This attribute serves as a unique search identifier that enables the identification of a specific user flow request.
offerId*
(String)
A unique offer id used for all subsequent API calls to identify user selected result.



Sightseeing Cancellation-Policy Request
1
2
3
4
{
  "searchKey": "8c85b663-4008-40d4-93c0-b4XXXXX1308",
  "offerId": "8c85b663-4008-40d4-93c0-b42226691308XXXXXXXXXXXR00000000"
}


Sightseeing Cancellation-Policy Response

After sending the sightseeing cancellation-policy request Travlinq will give you all the available sightseeing cancellation-policy.

Tags Attribute Description
meta meta
(Object)
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"
commonData commonData
(Object)
This tag has the common Data in the response.
searchKey *
(String)
A unique search id will be returned in the search response.
data data
(Object)
policyDescription*
(String)
This attribute provides a description of the cancellation policy. It typically outlines the terms and conditions for cancellations, such as the refund criteria and the cancellation period.
Sightseeing cancellation-policy response
{
  "meta": {
    "success": true,
    "statusCode": 1,
    "statusMessage": "SUCCESS",
    "actionType": "Sightseeing cancellation policy",
    "conversationId": "fe22cb8d-67e9-4c29-92af-e44dffdcb9a9"
  },
  "commonData": {
    "searchKey": "6bca2fd7-dcbe-482a-b8fb-b8abedf73871"
  },
  "data": [
    {
      "policyDescription": "100% refund if canceled before 3 days prior"
    }
  ],
  "version": "1.0.0"
}