Get all the option sets that belong to a company

GET /company/companies/@id/optionsets

Request

Authentication

This endpoint requires authentication.

Header Value
Authorization Set the value to Bearer + + access_token

URL parameters

Replace the @ keywords in the URL with their corresponding value.

A dictionary with fields

Field Type Description
id Int Company ID. Return only option sets of this company

Example request 1

GET /company/companies/19/optionsets HTTP/1.1
Host: api.bakeronline.be
X-VERSION: 1.10.0
Accept-Language: en-US,en;q=0.5

Response

Array of company.OptionSet.detailed: [company.OptionSet.detailed]

company.OptionSet.detailed

Field Type Description
name [Language: String] Name of the option set
allow_attachment Bool Allow the attachment of a picture to this option set
options [company.Option] Array of company.Option
id Int Id of the option set
code String? Nullable. Your own ID or key that you 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
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

Example response 1

HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Content-Length: 11602

[
    {
        "name": {
            "nl": "...",
            "en": "...",
            "fr": "..."
        },
        "allow_attachment": false,
        "options": [
            {
                "name": {
                    "nl": "...",
                    "en": "...",
                    "fr": "..."
                },
                "price_change": 11,
                "id": 16,
                "code": "...",
                "order": 15,
                "price_calculation": "PER_PIECE",
                "active": true,
                "image": {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "file_id": 15,
                    "white_background": true
                }
            },
            {
                "name": {
                    "nl": "...",
                    "en": "...",
                    "fr": "..."
                },
                "price_change": 16,
                "id": 12,
                "code": "...",
                "order": 17,
                "price_calculation": "PER_PIECE",
                "active": false,
                "image": {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "file_id": 13,
                    "white_background": true
                }
            },
            {
                "name": {
                    "nl": "...",
                    "en": "...",
                    "fr": "..."
                },
                "price_change": 18,
                "id": 11,
                "code": "...",
                "order": 14,
                "price_calculation": "PER_PIECE",
                "active": true,
                "image": {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "file_id": 19,
                    "white_background": true
                }
            }
        ],
        "id": 16,
        "code": "...",
        "multiple_choice": true,
        "choose_amount": false,
        "min_different_options": 16,
        "max_different_options": 14,
        "min_amount_options": 13,
        "max_amount_options": 15
    },
    {
        "name": {
            "nl": "...",
            "en": "...",
            "fr": "..."
        },
        "allow_attachment": false,
        "options": [
            {
                "name": {
                    "nl": "...",
                    "en": "...",
                    "fr": "..."
                },
                "price_change": 16,
                "id": 14,
                "code": "...",
                "order": 11,
                "price_calculation": "PER_PIECE",
                "active": false,
                "image": {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "file_id": 18,
                    "white_background": false
                }
            },
            {
                "name": {
                    "nl": "...",
                    "en": "...",
                    "fr": "..."
                },
                "price_change": 19,
                "id": 11,
                "code": "...",
                "order": 17,
                "price_calculation": "PER_PIECE",
                "active": false,
                "image": {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "file_id": 13,
                    "white_background": true
                }
            },
            {
                "name": {
                    "nl": "...",
                    "en": "...",
                    "fr": "..."
                },
                "price_change": 11,
                "id": 18,
                "code": "...",
                "order": 15,
                "price_calculation": "PER_PIECE",
                "active": false,
                "image": {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "file_id": 14,
                    "white_background": false
                }
            }
        ],
        "id": 10,
        "code": "...",
        "multiple_choice": false,
        "choose_amount": true,
        "min_different_options": 14,
        "max_different_options": 10,
        "min_amount_options": 18,
        "max_amount_options": 15
    },
    {
        "name": {
            "nl": "...",
            "en": "...",
            "fr": "..."
        },
        "allow_attachment": true,
        "options": [
            {
                "name": {
                    "nl": "...",
                    "en": "...",
                    "fr": "..."
                },
                "price_change": 18,
                "id": 18,
                "code": "...",
                "order": 14,
                "price_calculation": "PER_PIECE",
                "active": true,
                "image": {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "file_id": 12,
                    "white_background": false
                }
            },
            {
                "name": {
                    "nl": "...",
                    "en": "...",
                    "fr": "..."
                },
                "price_change": 13,
                "id": 10,
                "code": "...",
                "order": 15,
                "price_calculation": "PER_PIECE",
                "active": true,
                "image": {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "file_id": 12,
                    "white_background": false
                }
            },
            {
                "name": {
                    "nl": "...",
                    "en": "...",
                    "fr": "..."
                },
                "price_change": 19,
                "id": 17,
                "code": "...",
                "order": 15,
                "price_calculation": "PER_PIECE",
                "active": false,
                "image": {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "file_id": 10,
                    "white_background": true
                }
            }
        ],
        "id": 19,
        "code": "...",
        "multiple_choice": false,
        "choose_amount": true,
        "min_different_options": 10,
        "max_different_options": 15,
        "min_amount_options": 12,
        "max_amount_options": 12
    }
]
This is a development version Do not use this version in production
1.10.0 development