In this article, we will learn how to get company info from Quickbooks online in .NET MVC web application using SDK.
Before using any Quickbooks online API we need access token, if you don’t know how to get access token then you can find it here.
Company info contains basic company information. We can get company info that is currently connected.
Below are a few steps for getting company info,
public ActionResult GetCompanyInfo() { CompanyInfo ObjCompanyInfo = new CompanyInfo(); try { OAuth2RequestValidator oauthValidator = new OAuth2RequestValidator(Access_token); // Create a ServiceContext with Auth tokens and realmId ServiceContext serviceContext = new ServiceContext(RealmId, IntuitServicesType.QBO, oauthValidator); serviceContext.IppConfiguration.MinorVersion.Qbo = "23"; serviceContext.IppConfiguration.BaseUrl.Qbo = QboBaseUrl; var queryService = new QueryService<CompanyInfo>(serviceContext); ObjCompanyInfo = queryService.ExecuteIdsQuery("select * from CompanyInfo").FirstOrDefault<CompanyInfo>(); if (ObjCompanyInfo != null) { ViewBag.IsSuccess = true; } return View(ObjCompanyInfo); } catch (IdsException ex) { return View(ObjCompanyInfo); } catch (Exception ex) { return View(ObjCompanyInfo); } }
@model Intuit.Ipp.Data.CompanyInfo @{ ViewBag.Title = "GetCompanyInfo"; } <h2>Company Info</h2> @if (ViewBag.IsSuccess != null && ViewBag.IsSuccess == true) { <div> <table class="table table-bordered"> <tr> <th>Id</th> <th>Company Name</th> <th>Legal Name</th> <th>Country</th> <th>Email</th> </tr> <tr> <td> @Model.Id </td> <td> @Model.CompanyName </td> <td> @Model.LegalName </td> <td> @Model.Country </td> <td> @Model.Email.Address </td> </tr> </table> </div> }
So that’s how we can get company info from Quickbooks online.
Output:
In this article, we have to show Create and Used PIPE in angular
In this article, we have to show Create and Used PIPE in angular
In this article, we have to show Create and Used PIPE in angular
View Comments
Hi there just wanted to give you a quick heads up. The text in your article seem to be running off the screen in Firefox. I'm not sure if this is a formatting issue or something to do with browser compatibility but I thought I'd post to let you know. The style and design look great though! Hope you get the problem resolved soon. Many thanks