Top "Api-versioning" questions

ASP.NET CORE, Web API: No route matches the supplied values

PLEASE NOTE: This question was asked in 2016. The original answer to this problem was to update the microsoft api versiong …

c# asp.net-mvc-routing .net-core asp.net-core-webapi api-versioning
ASP.net Web Api Versioning

I have ASP.net Web Api project and I decided that it was time to support versioning. I am using …

c# asp.net-mvc asp.net-web-api api-versioning
The inline constraint resolver of type 'DefaultInlineConstraintResolver' was unable to resolve the following inline constraint: 'apiVersion'

I have a basic WebApi implementation setup with the default Values controller. After reading a blog about RESTful WebApi Versioning …

c# asp.net asp.net-web-api asp.net-web-api2 api-versioning
REST API: Multiple versions, single application?

I am working on a REST API where I will have to introduce some breaking changes soon, so a v2 …

java rest versioning api-versioning
An API version is required, but was not specified. webapi

var constraintResolver = new DefaultInlineConstraintResolver() { ConstraintMap = { ["apiVersion"] = typeof( ApiVersionRouteConstraint ) } }; config.MapHttpAttributeRoutes(constraintResolver); config.AddApiVersioning(o => o.AssumeDefaultVersionWhenUnspecified = true); [ApiVersion("2.05")] [RoutePrefix("…

asp.net-web-api routes asp.net-web-api-routing api-versioning
Laravel API versioning folders structure

I am new in api versioning ,so my question is : 1)Is this folder structure true? /app /controllers /Api /v1 /UserController.…

php laravel api api-versioning
How do you manage the underlying codebase for a versioned API?

I've been reading up on versioning strategies for ReST APIs, and something none of them appear to address is how …

rest versioning api-versioning