> 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-detail-api.md).

# Board Types Detail API

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

## API deatils

<mark style="color:green;">`GET`</mark>  `/api/v1/hotel/content-api/types/boards/details`

**Headers**

| Name            | Value                   |
| --------------- | ----------------------- |
| Content-Type    | `application/json`      |
| Authorization   | `Bearer <Access token>` |
| Accept-Encoding | `gzip`                  |

**Query Params**

<table><thead><tr><th width="169">Name</th><th width="111">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>boardIds</code></td><td>string</td><td>Array of boardIds[100001,100004]</td></tr></tbody></table>

**Response**

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

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

{% endtab %}
{% endtabs %}
