Board Types Detail API

Returns all the details associated with a single Board Types or a group of Board Types.

API deatils

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

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <Access token>

Accept-Encoding

gzip

Query Params

Name
Type
Description

boardIds

string

Array of boardIds[100001,100004]

Response

{
    "success": true,
    "data": {
        "boards": [
            {
                "boardTypeId": 100001,
                "boardName": "Half Board",
                "boardShortName": "HB"
            },
            {
                "boardTypeId": 100004,
                "boardName": "all inclusive premium",
                "boardShortName": "AS"
            }
        ]
    }
}

Last updated