Board Types API

Returns the list of available board types.

API details

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

<Description of the endpoint>

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <Access token>

Accept-Encoding

gzip

Query Params

Name
Type
Description

SyncId

string

SyncLd

Response

{
    "success": true,
    "data": {
        "syncId": "04e25cbb72f73671f2940980974e82e",
        "total": 37,
        "from": 1,
        "to": 37,
        "boards": [
            {
                "boardTypeId": 100001,
                "boardName": "Half Board",
                "boardShortName": "HF"
            },
            {
                "boardTypeId": 100002,
                "boardName": "Full Board",
                "boardShortName": "FB"
            },
            {
                "boardTypeId": 100003,
                "boardName": "all inclusive",
                "boardShortName": "AI"
            },
            {
                "boardTypeId": 100004,
                "boardName": "all inclusive premium",
                "boardShortName": "AS"
            }
	]
	}
}

Last updated