Get field (checkbox)
Gets the description of a boolean field
- Parameters
- Advanced call ?
Function GetCheckboxField(Val Name) Export
| Parameter | CLI option | Type | Required | Description |
|---|---|---|---|---|
| Name | --title | String | ✔ | Field name |
Returns
Structure - Field description
| Parameter | Description |
|---|---|
| dontwait | Creates a background job and returns its data (for 1C and OneScript only) |
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"
}
}