0.9.5 Plugin API Enabled?

I have installed the plugin into openfire, but want to be able to cutomise so that I can open a room and parse the userdetails/displayname etc
I have looked at a sample API html call to the meet.jit.si server as below and it works fine, but if I change it to my own internal server, it doesnt work.
Im not sure if the plugin supports API calls or not, can someone confirm.
Thanks

<body>
    <script src="https://meet.jit.si/external_api.js"></script>
    <script>
        var domain = "meet.jit.si";
        var options = {
            roomName: "Test Room",
            parentNode: undefined,
            configOverwrite: {},
            interfaceConfigOverwrite: {
                filmStripOnly: false
            },				
			userInfo: {
			email: 'email@jitsiexamplemail.com',
			displayName: 'My displayName',
			}
        }
        var api = new JitsiMeetExternalAPI(domain, options);
		api.executeCommand('displayName', 'New Nickname');
		
    </script>
</body>

external_api.js is not exposed in ofmeet. You can download it from meet.jit.si and put it on your own web server anywhere you like and point it at your openfire server

Thank you for the confirmation. Thought it would be the case.