Enable Swagger
- 05 Feb 2024
- 1 Minute to read
- Print
Enable Swagger
- Updated on 05 Feb 2024
- 1 Minute to read
- Print
Article summary
Did you find this summary helpful?
Thank you for your feedback
Swagger is a collection of open source tools for designing, building, documenting, and consuming APIs. You can use it to test the server APIs.
To enable Swagger, perform the following steps:
Navigate to the master.config file.
Under appSettings, add the following entry: <add key="EnableSwagger" value="true"/>
Save your changes and close the file.
<configuration>
<appSettings type="global">
<add key="EnableSwagger" value="true"/>
</appSettings>
Note
You can now access the Swagger site at: http(s)://[server address]/gv2/webservices/API/swagger