How To Get Organization Details Using Zoho CRM In ASP.NET MVC

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.

Submit a Comment

Your email address will not be published. Required fields are marked *

Subscribe

Select Categories