Chain Detail API

Returns all the details associated with a single Hotel chain or a group of Hotel chain.

API details

GET /api/v1/hotel/content-api/types/chains/details

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <Access token>

Accept-Encoding

gzip

Query Params

Name
Type
Description

chainIds

string

Array of chainIds

Response

{
    "success": true,
    "data": {
        "chains": [
            {
                "chainId": 100247,
                "chainName": "TAJ group",
                "chainCode": "TJ",
                "hotelGroupId": 100001
            },
            {
                "chainId": 103001,
                "chainName": "amaks hotels & resorts",
                "chainCode": "AMASK",
                "hotelGroupId": null
            }
        ]
    }
}

Last updated