In this article, we will learn how to Get Roles And Specific Roles Data using Zoho CRM in ASP.NET MVC Web application.
Let’s begin
Please read this article first of all here.
Open the HomeController.cs file and add the below code in it.
public void GetRolesData() { ZCRMRestClient restClient = ZCRMRestClient.GetInstance(); BulkAPIResponse<ZCRMRole> response = restClient.GetOrganizationInstance().GetAllRoles(); List<ZCRMRole> roles = response.BulkData; }
public void GetSpecificRoleData() { ZCRMRestClient restClient = ZCRMRestClient.GetInstance(); APIResponse response = restClient.GetOrganizationInstance().GetRole(role id); // 33721640000000 is role id ZCRMRole role = (ZCRMRole)response.Data; }
if you have any questions or issues about this article, please let me know and more details here.
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