Is there an API to update the file definition? I am looking for a way to keep my project in Git and SwaggerHub in sync automatically, so I would like to update the file definition at every merge. Is it possible? How do you manage keeping your project and SwaggerHub definition in sync automatically?
Is there an API in SwaggerHub to update the file definition?
2k Views Asked by Ludo At
1
Yes, SwaggerHub has an API:
https://api.swaggerhub.com
Integrating with the SwaggerHub API
and a number of official API clients.
API
cURL command to create or update an API (note the use of
--data-binary
instead of-d/--data
):Raw HTTP request for the reference:
Use the correct
Content-Type
header value:application/yaml
for YAML orapplication/json
for JSON.SwaggerHub CLI
A command-line wrapper around the SwaggerHub API, available as a npm module.
Specify your API key (get it from https://app.swaggerhub.com/settings/apiKey):
Create a new API:
Update an existing API:
Maven plugin
https://github.com/swagger-api/swaggerhub-maven-plugin/
Gradle plugin
https://github.com/swagger-api/swaggerhub-gradle-plugin/