---
sidebar_position: 6
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Get field (checkbox)
Gets the description of a boolean field
`Function GetCheckboxField(Val Name) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Name | --title | String | ✔ | Field name |
Returns: Structure - Field description
```bsl title="1C:Enterprise/OneScript code example"
Result = OPI_Airtable.GetCheckboxField("Checkbox");
```
```bash
oint airtable GetCheckboxField \
--title "Checkbox"
```
```batch
oint airtable GetCheckboxField ^
--title "Checkbox"
```
```json title="Result"
{
"name": "Checkbox",
"type": "checkbox",
"options": {
"icon": "check",
"color": "yellowBright"
}
}
```