Implementing API Versioning with Swagger in ASP.NET Core Web API
Building upon the foundational guide for integrating Swagger into an ASP.NET Core Web API, this article explores how to implement version control for API documentation.
1. Define API Version Enum
public enum ApiVersion
{
/// <summary>
/// Version 1
/// </summary>
V1 = 1,
/// <summary>
/// Version 2
...
Posted on Thu, 02 Jul 2026 17:27:57 +0000 by seikan
Automated Python SDK Generation from OpenAPI with Dockerized Generator
1. Expoce the specification
Spin up any HTTP service that hosts a valid openapi.json (or swagger.json) at a reachable URL, e.g. http://localhost:8000/openapi.json.
2. Launch the generator service
docker run -d -p 8090:8080 \
--name openapi_generator \
openapitools/openapi-generator-online:latest-release
3. Generate the Python client
#!/usr ...
Posted on Fri, 08 May 2026 01:15:27 +0000 by Iron Bridge