Introduction
In this article, we will learn how to get organization details using Zoho CRM in ASP.NET MVC Web application.
Let’s begin
Please read this article first of all here.
C# Code Example
Open the HomeController.cs file and add the below code in it.
public void GetOrganizationDetails() { try { ZCRMRestClient restClient = ZCRMRestClient.GetInstance(); APIResponse response = restClient.GetOrganizationDetails(); ZCRMOrganization organization = (ZCRMOrganization)response.Data; } catch (Exception ex) { } }
if you have any questions or issues about this article, please let me know and more details here.