The configuration file contains a main section with some default settings for 3Dfindit and then a "toolbars" section.
Toolbar buttons can be set at the following positions:
Buttons themselves and their functionality are defined in the "buttons" section. Each button has a type that is either JS or VBS:
Each button has anicon and a name .
{
"baseApiPath": "",
"basename": "/webapps/3dfindit-enterprise",
"erp": true,
"startRoute": "CadBim",
"isEnterprise": true,
"toolbars": {
"mainMenuIcon": "./plugins/img/3dFinditEyeColor.svg",
"mainMenu": [
["customButton1_Group1", "customButton2_Group1", "customButton3_Group1"],
["customButton1_Group2", "customButton2_Group2", "customButton3_Group2"]
],
"viewer": ["exampleButton", "exampleVBSButton"],
"table": ["exampleButton", "exampleVBSButton"],
"noResults": ["customButton1", "customButton2", "customButton3"],
"searchResults": ["customButton1", "customButton2", "customButton3"],
"searchResultsContextMenu": ["customButton1", "customButton2", "customButton3"],
"buttons": {
"exampleButton": {
"type": "JS",
"name": {
"de-DE": "JS Beispiel",
"en-GB": "JS Example"
},
"callback": "onExampleButtonClicked",
"icon": "images/bell-solid.svg",
"tooltip": {
"de-DE": "JS Beispiel",
"en-GB": "JS Example"
}
},
"exampleVBSButton": {
"type": "VBS",
"icon": "images/bell-solid.svg",
"name": {
"de-DE": "VBS Beispiel",
"en-GB": "VBS Example"
},
"script": "/plugins/vbb/wstest.vbs",
"requestFromPdm": "currentuser",
"tooltip": {
"de-DE": "VBS Beispiel",
"en-GB": "VBS Example"
}
}
}
}
}

![[Note]](https://webapi.partcommunity.com/service/help/latest/pages/en/partsolutions_user/doc/images/note.png)