How to create Dynamics CRM Online User License

Source: Internet
Author: User

Hi, guys. Today I wowould like to share your guys how to operate CRM Online through O365 APIs. This is a very new topic because O365 APIs just went into Preview program.

Can we create CRM online user using crm oob APIs? No, imagine that if you want to create a user in on premise environment, then you shoshould create an account in AD first, and then create an CRM account using created AD account. as same as on premise environment, we also need to create an online AD account in Azure AD first.

OK, let's break up the confused concept. What's O365 APIs? O365 is office 365, Microsoft was migrated all of office suit software e.g. word, excel, sharepoint, exchange and so on into Cloud environment. and they are got very user experience for integration. image that you just need to buy one software, and then you can use all of competition software on longer do anything for deployments or setups. for O365 APIs, it was expose to end-developer to invoke to control resources of Office 365 such creating an calendar, sending email, creating user, assigning user license and so on.

In this article, we will follow below steps to describe this topic:

1. How to invoke O365 APIs.

Microsoft had published one VS extension tool. It can generate sample codes about how to invoke O365 services.


2. How to use O365 APIs to create CRM Online user

Right now Microsoft was expose oen type APIs called Azure AD graph based web api to us to operate CRM Online user. and there is one helper library can be used to operate CRM Online user, you guys can download it in here. below is a code snipet about how to user it to create CRM Online user.

            string userName = new Random().Next(1000, 9999).ToString();            var verifiedDomains = DDS.tenantDetails.Single().verifiedDomains.ToList();            var verifiedDomainValues = verifiedDomains.Select(it => it.name);            ViewData["selectedDomain"] = new SelectList(verifiedDomainValues);            Microsoft.WindowsAzure.ActiveDirectory.User user = new Microsoft.WindowsAzure.ActiveDirectory.User();            user.userPrincipalName = string.Format(CultureInfo.InvariantCulture, "{0}@{1}", userName, "crm2014.onmicrosoft.com");            user.mailNickname = userName;            user.displayName = userName;            user.accountEnabled = true;            user.passwordProfile.password = "123456";            DDS.AddTousers(user);            DDS.SaveChanges();


3. How to assign O365 license to created CRM Online user

We still can't use the created account after assiging a license to it. So we need to use below code to assign a license to the created account.

string[] queryParameters = { "api-version=2013-11-08" };            string requestUrl = String.Format(CultureInfo.InvariantCulture,              "{0}/{1}/users/{2}/assignLicense?{3}",              serviceInfo.ApiEndpoint,              HttpUtility.UrlEncode(Office365CommonController.TenantId),              HttpUtility.UrlEncode(user.userPrincipalName),              String.Join("&", queryParameters));            // Prepare the HTTP request:            using (HttpClient client = new HttpClient())            {                Func<HttpRequestMessage> requestCreator = () =>                {                    HttpRequestMessage request = new HttpRequestMessage(HttpMethod.Post, requestUrl);                                       request.Content =new StringContent(@"{                              'addLicenses':[{'disabledPlans':[ ],'skuId':'d17b27af-3f49-4822-99f9-56a661538792'}],                              'removeLicenses':[ ]}",System.Text.Encoding.UTF8,"application/json");                    return request;                };                // Send the request using a helper method, which will add an authorization header to the request,                // and automatically retry with a new token if the existing one has expired.                using (HttpResponseMessage response = await Office365CommonController.SendRequestAsync(                    serviceInfo, client, requestCreator))                {                    // Read the response and deserialize the data:                    string responseString = await response.Content.ReadAsStringAsync();                    if (!response.IsSuccessStatusCode)                    {                        return Office365CommonController.ShowErrorMessage(serviceInfo, responseString);                    }                                        return View();                }            }        }


Resources

Office 365 APIsAuthority Documents

Http://msdn.microsoft.com/en-us/library/office/dn605892.aspx

 

Office 365 API forVisual Studio 2013 Extension

Http://visualstudiogallery.msdn.microsoft.com/7e947621-ef93-4de7-93d3-d796c43ba34f


Office 365 API Workthrough

Http://blogs.msdn.com/ B /officeapps/archive/2014/03/12/announcing-office-365-api-tools-for-visual-studio-preview.aspx


Announcing the new version of the Graph API: api-version = 2013-11-08 (how to assign license to users)

Http://blogs.msdn.com/ B /aadgraphteam/archive/2013/11/14/announcing-the-new-version-of-the-graph-api-api-version-2013-11-08.aspx>







Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.