| Server IP : 202.61.199.114 / Your IP : 216.73.217.139 Web Server : nginx/1.22.1 System : Linux de.arni-solutions.de 6.1.0-49-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64 User : web20 ( 1018) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/clients/client2/web18/web/public/documentation/ |
Upload File : |
<!DOCTYPE html>
<!--[if lt IE 7]> <html lang="en" ng-app="evid" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html lang="en" ng-app="evid" class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html lang="en" ng-app="evid" class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="en" ng-app="evid" class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>API Documentation</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inconsolata">
<link rel="stylesheet" href="evid.min.css">
<script src="evid.min.js"></script>
<script type="text/javascript">
evid.config(function(evidProvider) {
/**
* Url to the PSX documentation endpoint
*/
var url = evidProvider.guessEndpointUrl(false) + 'doc';
evidProvider.setUrl(url);
/**
* Paths which should be excluded from the documentation
*/
var exclude = [];
evidProvider.setExclude(exclude);
/**
* Optional menu entries. Each menu entry must have the following format
* { title: 'Getting started', icon: 'home', href: 'introduction.htm' }
*/
var menu = [{
title: 'Getting started',
icon: 'home',
href: 'getting_started.html'
}];
evidProvider.setMenu(menu);
/**
* Whether the app should try to load example files. More information at
* the readme in the examples/ folder
*/
evidProvider.setExamples(false);
});
</script>
</head>
<body layout="column" ng-controller="AppCtrl">
<md-toolbar class="md-toolbar-tools md-primary">
<div class="md-toolbar-tools">
<md-button class="md-icon-button" aria-label="Menu" ng-click="toggleSidebar()">
<md-icon md-font-library="material-icons">menu</md-icon>
</md-button>
<h2>
<span>API Documentation</span>
</h2>
</div>
</md-toolbar>
<section layout="row" flex>
<md-sidenav class="md-sidenav-left md-whiteframe-z1" md-component-id="left" md-is-locked-open="$mdMedia('gt-md')">
<md-content class="evid-menu">
<md-list flex>
<md-subheader class="md-primary" ng-if="menus.length > 0">Overview</md-subheader>
<md-list-item ng-repeat="menu in menus" class="md-2-line" ng-href="#!/page/{{ menu.title|slugify }}">
<md-icon md-font-library="material-icons">{{ menu.icon }}</md-icon>
<div class="md-list-item-text" layout="column">
<h3>{{ menu.title }}</h3>
</div>
</md-list-item>
<md-subheader class="md-primary">Endpoints</md-subheader>
<md-list-item ng-repeat="route in routings | orderBy: 'path'" class="md-2-line" ng-href="#!/api{{ route.path }}">
<md-icon md-font-library="material-icons">description</md-icon>
<div class="md-list-item-text" layout="column">
<h3>{{ route.path }}</h3>
</div>
</md-list-item>
</md-list>
</md-content>
</md-sidenav>
<md-content flex ng-view></md-content>
</section>
</body>
</html>