_example_grouped_cf_set
An example of grouped custom field values. These custom field sets can be added more than once, each set will have an index, which needs to be provided when adding, updating, or removing individual custom field values. For more information on working with grouped custom fields using the API, see Grouped Custom Fields.
The index for this set of grouped custom field values.
A field that will appear as a checkbox in the UI. In the API, the value will be TRUE or FALSE as a string. The value must be provided as a string, not a boolean.
Possible values: [TRUE, FALSE]
A field that can contain a string of text. Pay attention to proper JSON escaping if providing values for such fields via API.
A field supporting numbers only. Please note: the value is to be provided as a string.
A field that supports enumerated values. Requests will fail if the value provided for such a field is not one of the supported IDs or values.
{
"Example_Checkbox_Field": "TRUE",
"Example_Free_Text_Field": "A free text field up to 255 characters in length",
"Example_Number_Field": "46290",
"Example_Select_Field": [
{
"example_option_id": "123",
"example_option_value": "option 1"
},
{
"example_option_id": "456",
"example_option_value": "option 7"
}
],
"_index": "0"
}