PreviousNext

Setting up Swagger to support versioned API endpoints in ASP.NET Core

by bill-s, 2018-11-27T10:17:44.700Z

Versioning of your endpoints is important especially if you have 3rd party dependent clients of your REST API service. Any change in your endpoint, for example in data structure may impact clients even if it is backward compatible, clients may process your endpoint data in different ways, so even adding one additional property to your model may also impact functionality of the client which is consuming your endpoint.

Read More