Skip to content

Marhaba Auxiliaries
Run in Postman

/api/v1/marhaba/auxiliaries   
This service is used to get auxiliaries for marhaba result.

Marhaba Auxiliary Request

Marhaba auxiliary request mainly consists with searchKey , offerId and auxiliaries .

Tags Attribute Description
meta meta
(Object)
marhabaAuxiliariesCriteria (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.
Auxiliaries auxiliaries*
(Array)
Contains an array of auxiliaries to be booked.
auxiliaryOfferId*
(String)
An offer-specific identifier, ensuring clear reference for the selected auxiliaries.
quantity*
(Integer)
This specifies the quantity of auxiliaries being booked
Marhaba Auxiliary Request
1
2
3
4
5
{
    "searchKey": "59f49d3b-7d63-4fe7-a94a-f3404138777b",
    "offerId": "59f49d3b-7d63-4fe7-a94a-f3404138777b0MARHABASTR00000000"

}



Marhaba Auxiliary Response

After sending the marhaba auxiliary request Travlinq will give you the details of the auxiliaries present for the selected marhaba .

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)
This tag has the common Data in the response.
auxiliaryOfferId *
(String)
A unique search id will be returned in the search response.
productName *
(String)
Name of the auxiliary
productCode *
(String)
Code of the auxiliary
productCategory *
(String)
Category of the auxiliary
Pricing Info pricingInfo
(Object)
This tag has the common Data in the response.
netAmount *
(Double)
Amount of the auxiliary
currency *
(String)
Indicates the currency code, such as "AED," associated with the product's pricing.
Marhaba Auxiliary Response
{
    "meta": {
        "success": true,
        "statusCode": 1,
        "statusMessage": "SUCCESS",
        "actionType": "MARHABA_AUXILIARIES",
        "conversationId": "b4e30446-86db-43d3-b4c6-a2f0e471a00a"
    },
    "commonData": {
        "searchKey": "59f49d3b-7d63-4fe7-a94a-f3404138777b"
    },
    "data": [
        {
            "auxiliaryOfferId": "59f49d3b-7d63-4fe7-a94a-f3404138777b0MARHABASTR00000000_0107",
            "productName": "porter service",
            "productCode": "DXB_PORTR_A",
            "productCategory": "Auxiliary",
            "pricingInfo": {
                "netAmount": 30.0,
                "currency": "AED"
            }
        }
    ],
    "version": "1.0.0"
}