Skip to content

Marhaba Search
Run in Postman

/api/v1/marhaba/search   
This service is used to search for available marhaba meet and greet , lounge and transfer activities. By providing the flight , passenger details and the service and product type , user will receive list of marhabas to select.

Marhaba Search Request

Marhaba search mainly consists with flight details , passenger information , service and product type and travel class.

Tags Attribute Description
meta meta
(Object)
MarhabaSearchCriteria (JsonObject)
product type*
(String)
Marhaba product type should be mention in this attribute.
service type*
(String)
Marhaba service type should be mention in this attribute.
Travel class*
(String)
Travel class should be mentioned in this tag.
passengers passengers*
(Object)
Travelling passenger details should be updated here.
adult*
(Integer)
Adult count
child
(Integer)
Child count
childAge
(Integer Array)
Should mention the child ages array if children are available
Flight details arrivalFlight*
(Object)
flight details should be updated here.
departureAirportCode*
(String)
Adult count
arrivalAirportCode*
(String)
Child count
arrivalTerminal*
(String)
Arrival terminal should be updated here
flightNumber*
(String)
Flight number should be updated here
arrivalTime*
(Time)
Arrival time should be updated here
arrivalDate*
(Date)
Arrival date should be updated here



Marhaba Search Request
{
    "marhabaProductType": "MNG",
    "marhabaServiceType": "A",
    "passengers": {
        "adult": 1,
        "child": 2,
        "childAge": [
            11,
            4
        ]
    },
    "arrivalFlight": {
        "departureAirportCode": "LHR",
        "arrivalAirportCode": "DXB",
        "arrivalTerminal": "T2",
        "flightNumber": "GF0121",
        "arrivalTime": "10:30",
        "arrivalDate": "2023-11-06"
    },
    "travelClass": "Y"
}



Marhaba Search Response

After sending the marhaba search request Travlinq will give you all the available marhaba results which are relevant to the particular search criteria.

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)
offerId*
(String)
A unique offer id will be returned in the search response per each result.This should be used all subsequent API calls for identify user selected result.
productName*
(String)
It presents a unique product name corresponding to the selected result for clear identification.
productCode*
(String)
It presents a unique product code that aids in distinguishing the product within the response.
productDescription*
(String)
Offers a comprehensive description of the product, providing detailed information for client understanding.
priceInfo priceInfo*
(Object)
Provides comprehensive pricing and fare information, ensuring transparency in the breakdown of pricing components.
netAmount *
(Double)
Specifies the net amount of the product, aiding in understanding the overall price of the product.
taxes taxes *
(Array)
Contains information about taxes associated with the marhaba offer.
name*
(String)
The name or label of the tax.
amount*
(Double)
The amount of the tax.
included*
(Boolean)
Indicates whether the tax is included in the product price (true) or added on top of the price (false).
taxCode*
(String)
A code or identifier for the tax, if applicable.
currency *
(String)
Indicates the currency code, such as "AED," associated with the product's pricing.
customerAdditionalFareInfo customerAdditionalFareInfo*
(JsonObject)
Additional fare information related to customer
transactionFeeEarned*
(Double)
This attribute contains the transaction fee amount.
tdsOnCommission*
(Double)
Commission amount on tds will be shown here.
commissionEarned*
(Double)

Not released yet
markupEarned*
(Double)
Total markup amount from pricing rule will be shown here.
discount*
(Double)
Total discount amount from pricing rule will be shown here.
vat*
(Double)
Vat received from pricing model (if vat rule is applied)
plbearned*
(Double)
The PLB earned for the transaction.
incentiveEarned*
(Double)
The incentive amount earned for the transaction.
tdsOnIncentive*
(Double)
The Tax Deducted at Source (TDS) on the incentive amount earned.
cgst*
(Double)
GST received from pricing model if applicable-currently there is no gst component for marhaba
Not released yet
sgst*
(Double)

Not released yet
igst*
(Double)

Not released yet
Marhaba Search Response
{
    "meta": {
        "success": true,
        "statusCode": 1,
        "statusMessage": "SUCCESS",
        "actionType": "MARHABA_SEARCH",
        "conversationId": "b4e30446-86db-43d3-b4c6-a2f0e471a00a"
    },
    "commonData": {
        "searchKey": "59f49d3b-7d63-4fe7-a94a-f3404138777b"
    },
    "data": [
        {
            "offerId": "59f49d3b-7d63-4fe7-a94a-f3404138777b0MARHABASTR00000000",
            "productName": "Gold Meet & Greet T2-A",
            "productCode": "DXB_GMG_T2_A",
            "productCategory": "Meet & Greet",
            "productDescription": "<h3>Key Services</h3> Our Gold Meet & Greet product provide an exclusive one-to-one service. A marhaba representative will meet you at the marhaba drop-off point outside the airport and fast-track you through all the airport formalities. We’ll provide porter services, hand baggage trolleys and wheelchairs on request in Dubai. You can also enjoy complimentary access to the exclusive marhaba Lounge. Relax and enjoy our full buffet, beverages and facilities. In Dubai, the meeting place is a dedicated point in the departure check-in area. There is a marhaba Meeting Lounge near the check-in area at Dubai International Terminal 3 where you can relax, recharge and enjoy light refreshments before we escort you through the airport.</br><br><h3>Best for</h3>• Business travellers </br>• Senior travellers </br>• Travellers with special needs </br>• Travellers requiring language help</br><br><h3>Features</h3>• Exclusive one-to-one service </br>• Meet and greet on arrival in the terminal </br>• Fast-track through immigration and security </br>• An escort right to the meeting point in the arrivals hall </br>• Hand baggage trolleys on request </br>• Porter service from baggage reclaim </br>• Guides with multiple languages on request </br>• Departure Lounge access for your return flight from Dubai",
            "pricingInfo": {
                "netAmount": 677.25,
                "currency": "AED",
                "customerAdditionalFareInfo": {
                    "transactionFeeEarned": 0.0,
                    "commissionEarned": 0.0,
                    "markupEarned": 0.0,
                    "discount": 0.0,
                    "vat": 0.0,
                    "plbearned": 0.0,
                    "incentiveEarned": 0.0,
                    "tdsOnIncentive": 0.0
                }
            }
        }
    ],
    "version": "1.0.0"
}