Api Documentation

Appcms

AppCMS Allows you to customize your menu, Adding external links, apps, files and more.
Retrieves a collection of AppCMS Links and information about them.
Retrieves a single AppCMS Link and information about it.
Creates a new AppCMS Link. When an image tag is included in the content field of a type "page", these files are downloaded. They need to be publicly accessible. We support PNG and JPEG image file types.
Json
XML
PUT https://api.bundeling.com/V2/appcms

Parameters

Url

NameDescriptionType
uuidA unique identifier used to identify an AppCMS Linkstring

Body

NameDescriptionTypeNillable
nameThe name of the AppCMS Linkstringfalse
typeThe type of AppCMS Link
Accepted values: menu, file, page, browser, link, ssolink, applink, internal
stringfalse
iconThe icon displayed next to the AppCMS Link
Accepted values: account, account-card-details, account-network, account-star, airplane, alert-circle, anchor, arrow-right-drop-circle, auto-fix, bank, bell, book, book-open-page-variant, briefcase, bulletin-board, cake-variant, calendar, car-side, cart, clock, dice-3, email, file, file-chart, file-document, file-image, file-pdf, file-tree, file-video, file-word, folder, food, forum, forward, gamepad-variant, glass-cocktail, heart, help-circle, information, menu, monitor, monitor-lock, open-in-new, poll, qrcode, qrcode-scan, rss, settings, silverware-variant, star, tag, text, trophy, video, web, home
stringfalse
contentThe content/target of the AppCMS Linkstringfalse
external_referenceReference for linking to external systems.stringfalse
meta_keywordsComma separated list of keywords for search purposesstringfalse
positionThe position relative to other AppCMS Linkintfalse
parent_uuidThe unique identifier of the parent of this AppCMS Linkstringtrue

Example request

Headers

Content-Type:application/json
Api-Key:RAegSX8yZfEbqSPM

Body

{
    "name": "External Link",
    "type": "browser",
    "icon": "web",
    "content": "{\"link\":\"\\/\\/bundeling.com\"}",
    "external_reference": "123908",
    "meta_keywords": "keyword 1, keyword 2",
    "position": 10,
    "parent_uuid": "d7743aaf53224e279853c7d0c1dbfb3a"
}

Example response

{
    "uuid": "eeb763c41c054dcc8f6d9362f24ee9b2",
    "name": "External Link",
    "icon": "web",
    "type": "browser",
    "content": "{\"link\":\"\\/\\/bundeling.com\"}",
    "language": null,
    "parent_uuid": "d7743aaf53224e279853c7d0c1dbfb3a",
    "external_reference": "123908",
    "meta_keywords": "external, link",
    "position": 10,
    "labels": [
        "d7743aaf53224e279853c7d0c1dbfb3a",
        "d7743aaf53224e279853c7d0c1dbfb3a"
    ],
    "combined_labels": {
        "uuid": "d7743aaf53224e279853c7d0c1dbfb3a",
        "labels": [
            "d7743aaf53224e279853c7d0c1dbfb3a",
            "d7743aaf53224e279853c7d0c1dbfb3a"
        ]
    },
    "creationdate": "2024-01-20T00:00:00+0100",
    "lastupdate": "2024-01-20T00:00:00+0100"
}