Skip to main content

Notifications

Announcements

No record found.

Small and medium business | Business Central, N...
Suggested answer

Multi-tenant application's API to access Dynamics 365 Business Central company.

(1) ShareShare
ReportReport
Posted on by 2
I need to get the API response for a business central company using the multi-tenant app's client ID, and secret key.
I tried the below OAuth API to get the company's response. But I got the message as a bad request.
 
using (HttpClient client1 = new HttpClient())
{
    string companiesEndpoint = https:/api.businesscentral.dynamics.com/v2.0/organizations//+environment_name+/api/v2.0/companies/;
    string Access_Token = Session[/BCAccessToken/].ToString();
    client1.DefaultRequestHeaders.Add(/Authorization/, /Bearer / + Access_Token);
    HttpResponseMessage response1 = await client1.GetAsync(companiesEndpoint);
    if (response1.IsSuccessStatusCode)
    {
        string jsonResponsevalue = await response1.Content.ReadAsStringAsync();
        var Items = JsonConvert.DeserializeObject<dynamic>(jsonResponsevalue);
        JArray signItemtoken1 = (JArray)Items[/value/];
        foreach (var response in signItemtoken1)
        {
            string ComapnyName = response[/name/] != null ? (string)response[/name/] : //;
            string CompanyID = response[/id/] != null ? (string)response[/id/] : //;                                            
            if (ComapnyName == company_name)
            {
                Session[/BCCompanyName/] = CompanyName;
                Session[/BCCompanyId/] = CompanyID;
            }
        }                                            
    }
}
 
How to call an API to get company details or items from Dynamics 365 Business Central?
  • gdrenteria Profile Picture
    gdrenteria 12,920 Most Valuable Professional on at
    Multi-tenant application's API to access Dynamics 365 Business Central company.
  • Suggested answer
    Nitin Verma Profile Picture
    Nitin Verma 21,081 Super User 2024 Season 1 on at
    Multi-tenant application's API to access Dynamics 365 Business Central company.
    Are you facing any error?
     

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Congratulations 2024 Spotlight Honorees!

Kudos to all of our 2024 community stars! 🎉

Meet the Top 10 leaders for December!

Congratulations to our December super stars! 🥳

Get Started Blogging in the Community

Hosted or syndicated blogging is available! ✍️

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 291,642 Super User 2024 Season 2

#2
Martin Dráb Profile Picture

Martin Dráb 230,371 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans