Skip to content
Docs
API

Main API specification

window.onload = function() { // Begin Swagger UI call region
  const ui = SwaggerUIBundle({
    url: window.location.pathname +"../rest-api.yaml",
    dom_id: '#swagger-ui',
    deepLinking: true,
    presets: [
      SwaggerUIBundle.presets.apis,
      SwaggerUIStandalonePreset
    ],
    plugins: [],
    validatorUrl: "none",
    defaultModelsExpandDepth: -1,
    supportedSubmitMethods: []
  })
  // End Swagger UI call region
  window.ui = ui
}