1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-12-09 23:12:35 +02:00
Files
OpenIntegrations/docs/en/md/Airtable/Working-with-fields/Get-checkbox-field.md
Vitaly the Alpaca (bot) dd996a47a5 Main build (Jenkins)
2024-10-03 09:45:14 +03:00

46 lines
675 B
Markdown

---
sidebar_position: 6
---
# Get field (checkbox)
Gets the description of a boolean field
`Function GetCheckboxField(Val Name) Export`
| Parameter | CLI option | Type | Description |
|-|-|-|-|
| Name | --title | String | Field name |
Returns: Structure - Field description
<br/>
```bsl title="Code example"
Result = OPI_Airtable.GetCheckboxField("Checkbox");
```
```sh title="CLI command example"
oint airtable GetCheckboxField --title "Checkbox"
```
```json title="Result"
{
"name": "Checkbox",
"type": "checkbox",
"options": {
"icon": "check",
"color": "yellowBright"
}
}
```