Service Configuration
The configuration for bookable services is used to define important information that will affect how services display in CX Manager, Clienteling and any other apps / interfaces that are used for bookable products discovery.
Important information which needs to be in this section is:
- Service categories - A list of all the service types and their corresponding descriptions / images.
 - Category level questions - Questions which apply to any booking which that is made for a service in a particular category.
 
Changes to this configuration are made using the CX Manager's plugin interface using JSON editors.
In CX Manager, Navigate to Settings -> Plugins -> Booking Service.
Service configuration
Service configurations should be entered into the service configuration JSON editor in the following format:
[
    {
        "title": "Beauty Bookings",
        "type": "service_category",
        "handle": "beauty_bookings",
        "locale": "en_AU",
        "description": "Stuff",
        "icon_url": "https:\/\/img.com",
        "questions": []
    },
    {
        "title": "Skincare",
        "type": "service_category",
        "handle": "skincare",
        "locale": "en_AU",
        "description": "Stuff",
        "icon_url": "https:\/\/img.com",
        "questions": []
    },
    {
        "title": "Personal Shopping",
        "type": "service_category",
        "handle": "personal_shopping",
        "locale": "en_AU",
        "description": "Stuff",
        "icon_url": "https:\/\/img.com",
        "questions": []
    },
    {
        "title": "Beauty Bookings",
        "type": "service_category",
        "handle": "beauty_bookings",
        "locale": "da_DK",
        "description": "Stuff",
        "icon_url": "https:\/\/img.com",
        "questions": []
    },
    {
        "title": "Skincare",
        "type": "service_category",
        "handle": "skincare",
        "locale": "da_DK",
        "description": "Stuff",
        "icon_url": "https:\/\/img.com",
        "questions": []
    },
    {
        "title": "Personal Shopping",
        "type": "service_category",
        "handle": "personal_shopping",
        "locale": "da_DK",
        "description": "Stuff",
        "icon_url": "https:\/\/img.com",
        "questions": []
    }
]
← Embeddables Services →