Get Organization Information

Table of Contents

You can fetch the details about the organization associated with your account using the zoho.crm.invokeConnector() deluge task.

Note:

  • This task can be performed only in Zoho CRM Vertical Solutions.
  • Each time the zoho.crm.invokeConnector integration task is executed, it triggers an API request in the back-end. This call is deducted from the external calls limit available for the service from which the task is executed, based on your pricing plan.
  • Only actual executions that receive a response (whether success or failure) are counted, not the number of times the task appears in the script. For example, if zoho.crm.invokeConnector integration task is placed inside a for each task that iterates five times, the number of external calls consumed will be five, even though the task appears only once in the script. 

Syntax

<Response> = zoho.crm.invokeConnector("crm.getorg", <parameterMap>);

where:

ParamsData typeDescription
<Response> KEY-VALUE The task response returned as a Map
<parameterMap> KEY-VALUE A mandatory argument for the zoho.crm.invokeConnector() deluge task. In this case, an empty map can be passed as the argument.

Example

m = Map();
resp = zoho.crm.invokeConnector("crm.getorg",m); 
info resp; 

Response Format

{"{"status_code":200,"response":"{\"org\":[{\"country\":null,\"photo_id\":null,\"city\":null,\"description\":null,\"mc_status\":false,\"gapps_enabled\":false,\"domain_name\":\"org74822955\",\"translation_enabled\":false,\"street\":null,\"alias\":null,\"currency\":\"US Dollar\",\"id\":\"2019230000000452658\",\"state\":null,\"fax\":null,\"employee_count\":\"1\",\"zip\":null,\"website\":null,\"currency_symbol\":\"$\",\"mobile\":null,\"currency_locale\":\"en_US\",\"primary_zuid\":\"71562802\",\"zia_portal_id\":null,\"time_zone\":\"Asia/Kolkata\",\"zgid\":\"74822955\",\"country_code\":\"US\",\"license_details\":{\"paid_expiry\":null,\"users_license_purchased\":3,\"trial_type\":\"enterprise\",\"trial_expiry\":\"2023-03-31T15:59:53+05:30\",\"paid\":false,\"paid_type\":\"free\"},\"phone\":\"+1 505-363-2395\",\"company_name\":\"inter.org\",\"privacy_settings\":false,\"primary_email\":\"esther.binu+t1@zohotest.com\",\"hipaa_compliance_enabled\":false,\"iso_code\":\"USD\"}]}"}" }