Adding a name and headline description to Plumber API for Swagger interface

Plumber is a fantastic tool, thank you rstudio.

Does anyone know how to pass information in a plumber.R file which will populate the "title" and headline "description" items in Swagger? At the moment I can only get the generic "API Title" and "API description".

Thanks!

When you create a new plumber file from the RStudio IDE menu, you get the following:

library(plumber)

#* @apiTitle Plumber Example API

This already provides you with the template for modifying the API title. You can then add the API description in a similar way, and add the API version while your'e at it:

library(plumber)

#* @apiTitle Your title goes here
#* @apiDescription Your description goes here
#* @apiVersion 0.0.1.9000

Your swagger page should look like this:

3 Likes

Thank you Andrie. Next time I'll create directly from the menu wizard :slight_smile:

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.