Skip to main content

Get field (checkbox)

Gets the description of a boolean field

Function GetCheckboxField(Val Name) Export

ParameterCLI optionTypeDescription
Name--titleStringField name

Returns: Structure - Field description


Code example
  
Name = "Checkbox";

Response = OPI_Airtable.GetCheckboxField(Name); //Map
Response = OPI_Tools.JSONString(Response); //JSON string
CLI command example
    
oint airtable GetCheckboxField --title "Checkbox"

Result
{
"name": "Checkbox",
"type": "checkbox",
"options": {
"icon": "check",
"color": "yellowBright"
}
}