footer

LayoutComponent ❌ Theme ✅ Options ✅ Content & Translations

To edit the Footer, you need to edit the layout-component footer and send a PATCH request on /widgets/layout-component/{layout-component-id} and specify the following options in the options property.

ElementDescriptionComponent options

text

Text element in the footer.

icon

Icon element in the footer.

PATCH https://api.didomi.io/widgets/layout-components/{layout_component_id}?organization_id=YOUR_ORG_ID&widget_id=YOUR_WIDGET_ID

{
    "type": "footer",
    "organization_id": "String",
    "options": {
        "text": {
            "style": {
                "default": {
                    "color": "",
                    "fontSize": "",
                    "lineHeight": "",
                    "fontWeight": ""
                }
            },        
            "content": {
                "en": "YOUR_TEXT",
                "fr": "VOTRE_TEXTE"
            }
        },
        "icon": {
            "src": "YOUR_URL",
            "style": {
                "default": {
                      "padding": "",
                      "margin": "",
                      "width": ""
                }
            }
        }
    }
}

Last updated