Skip to main content

Get field (checkbox)

Gets the description of a boolean field

Function GetCheckboxField(Val Name) Export

ParameterCLI optionTypeRequiredDescription
Name--titleStringField name

Returns: Structure - Field description


1C:Enterprise/OneScript code example
    Result = OPI_Airtable.GetCheckboxField("Checkbox");
    oint airtable GetCheckboxField \
--title "Checkbox"
Result
{
"name": "Checkbox",
"type": "checkbox",
"options": {
"icon": "check",
"color": "yellowBright"
}
}