Visual Studio2013 C#でAPIを作成しています。
バージョン管理をしたいんですが、よくわかりませんので、
できればコードのサンプルと一緒にバージョン管理方法を教えていただきたいんです。
下書きのURLになれるようバージョン管理をしたいんです。
バージョン管理した時のURL : https://testapi.com/api/v1/history
現在のURL : https://testapi.com/api/history

ソースコード

namespace TestAPI.WebApi.Controllers
{
   public class HistoryController : ApiControllerBase
   {
       [UseSSL]
       [Authorize]
       public async Task<IHttpActionResult> Post(HistoryRequestModels model)
       {
           ...
           return "test";

       }
   }
}