The CheckBoxGroup Field stores which CheckBoxes that belong to the CheckBoxGroup are checked or unchecked.
{
"Job Setup Checklist": {
"checkedItems": [
"Area Prepped",
"Tools Charged"
],
"id": "e6694a3a-9617-496d-94cb-a46c0108d3ca",
"name": "Job Status",
"type": "CheckBoxGroup"
}
}
NOTE
The id, name, and type are not necessary when creating or updating a form, they are returned in the JSON of a request for readability.
To specify a CheckBox that belongs to a group is checked, add the CheckBox name
to the list of checkedItems
.
Conversely, to specify a CheckBox that belongs to a group is unchecked, remove or omit the specific CheckBox name
from the list of checkedItems
.