Swagger specification
Last updated
Last updated
Swagger documentation can be divided into 2 sections:
REST API
Module specific controllers
The Swagger UI and the specification are served by the Swagger plugin.
Trying out the end points should be pretty straightforward. Each method is described, has a couple form elements that allow you to fill in request body and/or request parameters and at the bottom left you'll find a Try it out!
button that will send the request to the server.
The Molgenis REST API v1 and v2 are documented using the and you can browse the endpoints using the Swagger UI.
This is a work in progress and not all endpoints are fully documented yet.
Admins can hand out plugin permissions on the Swagger plugin in the Permission Manager. Only users with view permission on the plugin can access the swagger specification. The specification uses enums for the entity_name
parameter, and fills in the entities that the user can see.
By default, the API documentation is added to the menu. If you remove it from the menu, users with plugin permissions can still access the plugin on the url <server>/plugin/swagger/
.
The Molgenis REST api supports two forms of authentication: The standard session token header and an x-molgenis-token header.
The Swagger 2 specification only supports ApiKey authorization. So the Molgenis Swagger plugin generates a Molgenis token and fills it in as the ApiKey in the Swagger UI. This token will then be added as an x-molgenis-token
header by the Swagger UI to each request. You can view and edit the token by clicking the dark green Authorize
button at the top of the page.
When you toggle the listbox in the header of the swagger documentation, you can choose different MOLGENIS-modules.
The workflow in swagger is pretty much the same as in the REST API documentation. Authentication does not work in this part of the MOLGENIS API documentation.
When you want to contribute to MOLGENIS and are developing a module, there are a few components that you have to configure.
Update module pom with swagger-maven-plugin:
Add module to view-swagger-ui.ftl
Add swagger-annotations dependency to module pom.xml
Do not specify a version. The version is maintained by the master-pom.
Add annotations to controller
For real life examples see the UserAccountController.java
in MOLGENIS.