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
1C:Enterprise/OneScript code example
Result = OPI_Airtable.GetCheckboxField("Checkbox");
- Bash
- CMD/Bat
oint airtable GetCheckboxField \
--title "Checkbox"
oint airtable GetCheckboxField ^
--title "Checkbox"
Result
{
"name": "Checkbox",
"type": "checkbox",
"options": {
"icon": "check",
"color": "yellowBright"
}
}