OptionSet.simple

Field Type Description
id Int Id of the option set
name String Name of the option set (translated)
code String? Nullable. ID or key that you a third party can associate with an option set
multiple_choice Bool If true, the user can select none, one or more options (min_different_options and max_different_options is used for minimum and maximum)
choose_amount Bool If true, the user can enter an amount for every option. Note that this can only get enabled when multiple_choice = true
min_different_options Int When multiple choice is enabled, this is the minimum of different options a user should add to a cart item
max_different_options Int? Nullable. When multiple choice is enabled, this is the maximum of different options a user should add to a cart item. When set to null, there is no limit
min_amount_options Int When choose_amount is enabled, this is the minimum allowed sum of the option amounts user should add to a cart item. Note: if price per person is used, you should multiply this amount with the chosen persons.
max_amount_options Int? Nullable. When choose_amount is enabled, this is the maximum allowed sum of the option amounts a user should add to a cart item. When set to null, there is no limit. Note: if price per person is used, you should multiply this amount with the chosen persons.

Examples

Example 1

{
    "id": 13,
    "name": "...",
    "code": "...",
    "multiple_choice": false,
    "choose_amount": false,
    "min_different_options": 11,
    "max_different_options": 17,
    "min_amount_options": 19,
    "max_amount_options": 19
}
Version update available Please adjust your integration to the latest stable version (1.9.0)
1.7.0 stable