> For the complete documentation index, see [llms.txt](https://apidocs.mytravellerschoice.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://apidocs.mytravellerschoice.com/hotel-content-api/content-api/types-master/board-type-master/board-types-api.md).

# Board Types API

Returns the list of available board types.

## API details

<mark style="color:green;">`GET`</mark> `/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**

{% tabs %}
{% tab title="200" %}

```json
{
    "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"
            }
	]
	}
}
```

{% endtab %}
{% endtabs %}
