Microsoft Dynamics 365 CRM WebAPI Deprecation replacement
I work with Microsoft Dynamics 365 CRM Online with several customers. I used to work with the Xrm.WebApi object model in order to retrieve entities.
Recently I was searching how to create entities with this object and realized that it won't be longer accesible since they will deprecate this soon and CDS is the replacement.
So, according to CRM documentation (provided in the same CRM), the URL https://organiation.api.crm.dynamics.com/api/data/v9.1/
won't be accessible? How to work with AJAX requests to perform CRUD operations then?
Any comments are appreciated.
javascript c# rest dynamics-crm microsoft-dynamics
add a comment |
I work with Microsoft Dynamics 365 CRM Online with several customers. I used to work with the Xrm.WebApi object model in order to retrieve entities.
Recently I was searching how to create entities with this object and realized that it won't be longer accesible since they will deprecate this soon and CDS is the replacement.
So, according to CRM documentation (provided in the same CRM), the URL https://organiation.api.crm.dynamics.com/api/data/v9.1/
won't be accessible? How to work with AJAX requests to perform CRUD operations then?
Any comments are appreciated.
javascript c# rest dynamics-crm microsoft-dynamics
add a comment |
I work with Microsoft Dynamics 365 CRM Online with several customers. I used to work with the Xrm.WebApi object model in order to retrieve entities.
Recently I was searching how to create entities with this object and realized that it won't be longer accesible since they will deprecate this soon and CDS is the replacement.
So, according to CRM documentation (provided in the same CRM), the URL https://organiation.api.crm.dynamics.com/api/data/v9.1/
won't be accessible? How to work with AJAX requests to perform CRUD operations then?
Any comments are appreciated.
javascript c# rest dynamics-crm microsoft-dynamics
I work with Microsoft Dynamics 365 CRM Online with several customers. I used to work with the Xrm.WebApi object model in order to retrieve entities.
Recently I was searching how to create entities with this object and realized that it won't be longer accesible since they will deprecate this soon and CDS is the replacement.
So, according to CRM documentation (provided in the same CRM), the URL https://organiation.api.crm.dynamics.com/api/data/v9.1/
won't be accessible? How to work with AJAX requests to perform CRUD operations then?
Any comments are appreciated.
javascript c# rest dynamics-crm microsoft-dynamics
javascript c# rest dynamics-crm microsoft-dynamics
edited Nov 20 at 19:49
asked Nov 20 at 17:37
Martin Fernandez
647
647
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I believe that the web api will allow you to access CDS as well as D365, and I have never heard about it being deprecated. Did you see an article to that effect?
You can go into Settings > Customizations > Developer Resources and inspect the Instance Web API. In my v9.1 trial org it's still showing: https://myOrg.api.crm.dynamics.com/api/data/v9.1/
What is deprecated is the v2011 SOAP endpoint, which appears as the Organization Service under the Developer Resources:
https://myOrg.api.crm.dynamics.com/XRMServices/2011/Organization.svc
Look at this documentation seen over the provided API URL: docs.microsoft.com/en-us/previous-versions/dynamicscrm-2016/… It refers to the CDS API
– Martin Fernandez
Nov 20 at 19:47
Thanks. Where does it say that the Dynamics 365 Web API is being deprecated?
– Aron
Nov 20 at 19:48
Here it says: i.imgur.com/Rw7hxLm.png and when clicking on "Recommended version" it redirects me to that CDS documentation.
– Martin Fernandez
Nov 20 at 20:03
1
That notice refers to the documentation rather than the WebAPI itself. As far as I know, the CDS WebAPI is the Dynamics 365 WebAPI.
– Aron
Nov 20 at 20:18
Okay then. I get it. Thank you.
– Martin Fernandez
Nov 20 at 20:24
add a comment |
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%2f53398544%2fmicrosoft-dynamics-365-crm-webapi-deprecation-replacement%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I believe that the web api will allow you to access CDS as well as D365, and I have never heard about it being deprecated. Did you see an article to that effect?
You can go into Settings > Customizations > Developer Resources and inspect the Instance Web API. In my v9.1 trial org it's still showing: https://myOrg.api.crm.dynamics.com/api/data/v9.1/
What is deprecated is the v2011 SOAP endpoint, which appears as the Organization Service under the Developer Resources:
https://myOrg.api.crm.dynamics.com/XRMServices/2011/Organization.svc
Look at this documentation seen over the provided API URL: docs.microsoft.com/en-us/previous-versions/dynamicscrm-2016/… It refers to the CDS API
– Martin Fernandez
Nov 20 at 19:47
Thanks. Where does it say that the Dynamics 365 Web API is being deprecated?
– Aron
Nov 20 at 19:48
Here it says: i.imgur.com/Rw7hxLm.png and when clicking on "Recommended version" it redirects me to that CDS documentation.
– Martin Fernandez
Nov 20 at 20:03
1
That notice refers to the documentation rather than the WebAPI itself. As far as I know, the CDS WebAPI is the Dynamics 365 WebAPI.
– Aron
Nov 20 at 20:18
Okay then. I get it. Thank you.
– Martin Fernandez
Nov 20 at 20:24
add a comment |
I believe that the web api will allow you to access CDS as well as D365, and I have never heard about it being deprecated. Did you see an article to that effect?
You can go into Settings > Customizations > Developer Resources and inspect the Instance Web API. In my v9.1 trial org it's still showing: https://myOrg.api.crm.dynamics.com/api/data/v9.1/
What is deprecated is the v2011 SOAP endpoint, which appears as the Organization Service under the Developer Resources:
https://myOrg.api.crm.dynamics.com/XRMServices/2011/Organization.svc
Look at this documentation seen over the provided API URL: docs.microsoft.com/en-us/previous-versions/dynamicscrm-2016/… It refers to the CDS API
– Martin Fernandez
Nov 20 at 19:47
Thanks. Where does it say that the Dynamics 365 Web API is being deprecated?
– Aron
Nov 20 at 19:48
Here it says: i.imgur.com/Rw7hxLm.png and when clicking on "Recommended version" it redirects me to that CDS documentation.
– Martin Fernandez
Nov 20 at 20:03
1
That notice refers to the documentation rather than the WebAPI itself. As far as I know, the CDS WebAPI is the Dynamics 365 WebAPI.
– Aron
Nov 20 at 20:18
Okay then. I get it. Thank you.
– Martin Fernandez
Nov 20 at 20:24
add a comment |
I believe that the web api will allow you to access CDS as well as D365, and I have never heard about it being deprecated. Did you see an article to that effect?
You can go into Settings > Customizations > Developer Resources and inspect the Instance Web API. In my v9.1 trial org it's still showing: https://myOrg.api.crm.dynamics.com/api/data/v9.1/
What is deprecated is the v2011 SOAP endpoint, which appears as the Organization Service under the Developer Resources:
https://myOrg.api.crm.dynamics.com/XRMServices/2011/Organization.svc
I believe that the web api will allow you to access CDS as well as D365, and I have never heard about it being deprecated. Did you see an article to that effect?
You can go into Settings > Customizations > Developer Resources and inspect the Instance Web API. In my v9.1 trial org it's still showing: https://myOrg.api.crm.dynamics.com/api/data/v9.1/
What is deprecated is the v2011 SOAP endpoint, which appears as the Organization Service under the Developer Resources:
https://myOrg.api.crm.dynamics.com/XRMServices/2011/Organization.svc
answered Nov 20 at 19:42
Aron
1,8972917
1,8972917
Look at this documentation seen over the provided API URL: docs.microsoft.com/en-us/previous-versions/dynamicscrm-2016/… It refers to the CDS API
– Martin Fernandez
Nov 20 at 19:47
Thanks. Where does it say that the Dynamics 365 Web API is being deprecated?
– Aron
Nov 20 at 19:48
Here it says: i.imgur.com/Rw7hxLm.png and when clicking on "Recommended version" it redirects me to that CDS documentation.
– Martin Fernandez
Nov 20 at 20:03
1
That notice refers to the documentation rather than the WebAPI itself. As far as I know, the CDS WebAPI is the Dynamics 365 WebAPI.
– Aron
Nov 20 at 20:18
Okay then. I get it. Thank you.
– Martin Fernandez
Nov 20 at 20:24
add a comment |
Look at this documentation seen over the provided API URL: docs.microsoft.com/en-us/previous-versions/dynamicscrm-2016/… It refers to the CDS API
– Martin Fernandez
Nov 20 at 19:47
Thanks. Where does it say that the Dynamics 365 Web API is being deprecated?
– Aron
Nov 20 at 19:48
Here it says: i.imgur.com/Rw7hxLm.png and when clicking on "Recommended version" it redirects me to that CDS documentation.
– Martin Fernandez
Nov 20 at 20:03
1
That notice refers to the documentation rather than the WebAPI itself. As far as I know, the CDS WebAPI is the Dynamics 365 WebAPI.
– Aron
Nov 20 at 20:18
Okay then. I get it. Thank you.
– Martin Fernandez
Nov 20 at 20:24
Look at this documentation seen over the provided API URL: docs.microsoft.com/en-us/previous-versions/dynamicscrm-2016/… It refers to the CDS API
– Martin Fernandez
Nov 20 at 19:47
Look at this documentation seen over the provided API URL: docs.microsoft.com/en-us/previous-versions/dynamicscrm-2016/… It refers to the CDS API
– Martin Fernandez
Nov 20 at 19:47
Thanks. Where does it say that the Dynamics 365 Web API is being deprecated?
– Aron
Nov 20 at 19:48
Thanks. Where does it say that the Dynamics 365 Web API is being deprecated?
– Aron
Nov 20 at 19:48
Here it says: i.imgur.com/Rw7hxLm.png and when clicking on "Recommended version" it redirects me to that CDS documentation.
– Martin Fernandez
Nov 20 at 20:03
Here it says: i.imgur.com/Rw7hxLm.png and when clicking on "Recommended version" it redirects me to that CDS documentation.
– Martin Fernandez
Nov 20 at 20:03
1
1
That notice refers to the documentation rather than the WebAPI itself. As far as I know, the CDS WebAPI is the Dynamics 365 WebAPI.
– Aron
Nov 20 at 20:18
That notice refers to the documentation rather than the WebAPI itself. As far as I know, the CDS WebAPI is the Dynamics 365 WebAPI.
– Aron
Nov 20 at 20:18
Okay then. I get it. Thank you.
– Martin Fernandez
Nov 20 at 20:24
Okay then. I get it. Thank you.
– Martin Fernandez
Nov 20 at 20:24
add a comment |
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f53398544%2fmicrosoft-dynamics-365-crm-webapi-deprecation-replacement%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