API Versioning for different Product Versions that allow back patchingBest practices for API versioning?Difference between an API and SDKDifference between SPI and API?Difference between API and ABISecuring my REST API with OAuth while still allowing authentication via third party OAuth providers (using DotNetOpenAuth)Versioning REST APIShould I use PATCH or PUT in my REST API?REST API Update DesignREST API - PUT vs PATCH with real life examplesMultiple products in newest version of PayPal API
Sleeping solo in a double sleeping bag
How big would a Daddy Longlegs Spider need to be to kill an average Human?
Land Registry Clause
But though we be the children of technology
Can I submit a paper under an alias so as to avoid trouble in my country?
Best Practice: dependency on data model names
Does Denmark lose almost $700 million a year "carrying" Greenland?
Should my "average" PC be able to discern the potential of encountering a gelatinous cube from subtle clues?
How do I intentionally fragment a SQL Server Index?
Hai la patente? - omission of possessive adjective
Is there a known non-euclidean geometry where two concentric circles of different radii can intersect? (as in the novel "The Universe Between")
Have only girls been born for a long time in this village?
My two team members in a remote location don't get along with each other; how can I improve working relations?
Why should someone be willing to write a strong recommendation even if that means losing a undergraduate from their lab?
iPhone 8 purchased through AT&T change to T-Mobile
Is there any road between the CA State Route 120 and Sherman Pass Road (Forest Route 22S0) that crosses Yosemite/Serria/Sequoia National Park/Forest?
Count the frequency of integers in an array
Chess software to analyze games
How does turbine efficiency compare with internal combustion engines if all the turbine power is converted to mechanical energy?
Do living authors still get paid royalties for their old work?
Nuclear decay triggers
Is there such a thing as too inconvenient?
How to decide whether an eshop is safe or compromised
Unbiased estimator of exponential of measure of a set?
API Versioning for different Product Versions that allow back patching
Best practices for API versioning?Difference between an API and SDKDifference between SPI and API?Difference between API and ABISecuring my REST API with OAuth while still allowing authentication via third party OAuth providers (using DotNetOpenAuth)Versioning REST APIShould I use PATCH or PUT in my REST API?REST API Update DesignREST API - PUT vs PATCH with real life examplesMultiple products in newest version of PayPal API
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
There are lots of examples of API versioning for SAAS type architectures.
The versioning exists so both new and old APIs can be supported for customers.
And usually the versioning goes
v1.1
v1.2
v2.0
And the numbering indicates how impactful the change is?
However, I am wondering if there is an example where the Server itself can also have multiple versions. So some customers are on:
Nov-2018-fix2
Others on
June-2017-fix3
The API versioning then gets more complicated. Because if you start with v1.0 or whatever keep increasing and then you need to back patch, what happens?
So looking for industry example, if possible.
Thanks
rest api
add a comment |
There are lots of examples of API versioning for SAAS type architectures.
The versioning exists so both new and old APIs can be supported for customers.
And usually the versioning goes
v1.1
v1.2
v2.0
And the numbering indicates how impactful the change is?
However, I am wondering if there is an example where the Server itself can also have multiple versions. So some customers are on:
Nov-2018-fix2
Others on
June-2017-fix3
The API versioning then gets more complicated. Because if you start with v1.0 or whatever keep increasing and then you need to back patch, what happens?
So looking for industry example, if possible.
Thanks
rest api
add a comment |
There are lots of examples of API versioning for SAAS type architectures.
The versioning exists so both new and old APIs can be supported for customers.
And usually the versioning goes
v1.1
v1.2
v2.0
And the numbering indicates how impactful the change is?
However, I am wondering if there is an example where the Server itself can also have multiple versions. So some customers are on:
Nov-2018-fix2
Others on
June-2017-fix3
The API versioning then gets more complicated. Because if you start with v1.0 or whatever keep increasing and then you need to back patch, what happens?
So looking for industry example, if possible.
Thanks
rest api
There are lots of examples of API versioning for SAAS type architectures.
The versioning exists so both new and old APIs can be supported for customers.
And usually the versioning goes
v1.1
v1.2
v2.0
And the numbering indicates how impactful the change is?
However, I am wondering if there is an example where the Server itself can also have multiple versions. So some customers are on:
Nov-2018-fix2
Others on
June-2017-fix3
The API versioning then gets more complicated. Because if you start with v1.0 or whatever keep increasing and then you need to back patch, what happens?
So looking for industry example, if possible.
Thanks
rest api
rest api
asked Mar 27 at 14:51
More Than FiveMore Than Five
3,35812 gold badges53 silver badges90 bronze badges
3,35812 gold badges53 silver badges90 bronze badges
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55380189%2fapi-versioning-for-different-product-versions-that-allow-back-patching%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55380189%2fapi-versioning-for-different-product-versions-that-allow-back-patching%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown