getModules Method - Comparison

getModules Method - Comparison

Purpose

To retrieve all modules from Zoho CRM account.

Request URL

Version 1.0:

https://crm.zoho.com/crm/private/xml/Info/getModules?authtoken=AuthToken&scope=crmapi

Version 2.0:

URL: https://www.zohoapis.com/crm/v2/settings/modules

Method: GET

Header: Authorization=Zoho-oauthtoken {oauth_token}

Request Parameters

Version 1.0 Version 2.0
authtoken=**** Authorization=Zoho-oauthtoken ***** - as a Header.
scope=crmapi N/A
type N/A

Sample Responses:

+
Response in Version 1.0 Response in Version 2.0
<?xml version="1.0" encoding="UTF-8" ?>
<response uri="/crm/private/xml/Info/getModules">
<result>
<row no="1" id="1386586000000700001" pl="SalesInbox" sl="SalesInbox" gt="1">SalesInbox</row>
..
..
</result>
</response>
{
  "modules": [
   {
     "global_search_supported": false,
     "visibility": 1,
     "convertable": false,
     "editable": false,
     "deletable": false,
     "profiles": [
      {
       "name": "Administrator",
       "id": "1386586000000026011"
      },
      {
       "name": "Standard",
       "id": "1386586000000026014"
      },
      {
       "name": "Testing",
       "id": "1386586000000105017"
      },
      {
       "name": "Moderators",
       "id": "1386586000001038001"
      },
     ]
     "display_field": null,
     "creatable": false,
     "web_link": null,
     "sequence_number": 1,
     "singular_label": "SalesInbox",
     "modified_time": null,
     "viewable": true,
     "api_supported": false,
     "plural_label": "SalesInbox",
     "api_name": "SalesInbox",
     "modified_by": null,
     "generated_type": "default",
     "scoring_supported": false,
     "arguments": [],
     "id": "1386586000000700001",
     "module_name": "SalesInbox",
     "business_card_field_limit": 0,
     "parent_module": {},
    },
   ...
   ...
  ]
 }
    • Related Articles

    • getModules Method

       Purpose You can use the getModules method to get the list of modules in your CRM account.  Request URL XML Format: https://crm.zoho.com/crm/private/xml/Info/getModules?authtoken=Auth Token&scope=crmapi JSON Format: ...
    • downloadPhoto Method - Comparison

      Purpose To download the photo of a lead or a contact. Request URL Version 1.0: https://crm.zoho.com/crm/private/xml/(Leads or Contacts)/downloadPhoto?authtoken=AuthToken&scope=crmapi&id=RecordID Version 2.0: URL: ...
    • downloadFile Method - Comparison

      Purpose To download a file attached to a record. Request URL Version 1.0: https://crm.zoho.com/crm/private/xml/Leads/downloadFile?authtoken=AuthToken&scope=crmapi&id=Attachment Id Version 2.0: URL: ...
    • deletePhoto Method - Comparison

      Purpose To delete a photo of a contact or lead. Request URL Version 1.0: https://crm.zoho.com/crm/private/xml/(Leads or Contacts)/deletePhoto?authtoken=AuthToken&scope=crmapi&id=RecordID Version 2.0: URL: https://www.zohoapis.com/crm/v2/{Leads or ...
    • deleteRecords Method - Comparison

      Purpose To delete the selected records. Request URL Version 1.0: https://crm.zoho.com/crm/private/xml/Leads/deleteRecords?authtoken=AuthToken&scope=crmapi&id=Record ID Version 2.0: URL: https://www.zohoapis.com/crm/v2/Leads/{record_id} Method: DELETE ...