Modules API

Using Vertical Solutions REST API, you can retrieve the list of available modules through the Get List of Modules API.

Get List of Modules

Purpose

To retrieve the list of all the modules available in your Vertical Solutions account.

Request Details

Request URL

{api-domain}/crm/v2/settings/modules

Header

Authorization: Zoho-oauthtoken 100xx.d92d4xxxxxxxxxxxxx15f52

Scope

scope=ZohoCRM.settings.ALL
(or)
scope=ZohoCRM.settings.modules.{operation_type}

Possible operation types

ALL - Full data access
READ - Get module data

Note
  • Refer to the key api_name in the JSON data while accessing the resource. Every module, field, and related lists will have an API name, which you can use in the third-party integrations. For example, if you want to access the Leads module, use “Leads" which is the api_name every time you access the resource. The Vertical Solutions generates an API name internally while creating a custom module, custom field, or related list label. Please note that you cannot alter the API Names for the default modules, fields, and related lists. You can change the API names only for custom modules, fields, and related lists.

  • The generated API name can contain only alphabets, numbers, and underscores. The API name should start with an alphabet and should not have two consecutive underscores or end with an underscore.

  • Refer to Response Structure for more details about the JSON keys, values, and descriptions of the available modules. You can also use the sample response of each module as the input when you insert, update, or upsert a record in that corresponding module.

Sample Request

Copiedcurl "https://zylkercorp.zohoplatform.com/crm/v2/settings/modules"
-X GET
-H "Authorization: Zoho-oauthtoken 100xx.03xxxxxxxxxxxxxxxxxa5317.dxxxxxxxxxxxxxxxxxfa"
1.0.0ES6
Copied//Get instance of ModulesOperations Class
let modulesOperations = new ZCRM.Module.Operations();
//Get the instance of HeaderMap Class
let headerInstance = new HeaderMap();
//Add header to HeaderMap instance, if necessary
await headerInstance.add(ZCRM.Module.Model.GetModulesHeader.IF_MODIFIED_SINCE, new Date("2020-07-13T12:12:12+05:30"));
//Call getModules method that takes headerInstance as parameters
let response = await modulesOperations.getModules(headerInstance);
Copiedvar listener = 0;
class GetListofModules {

	async getModules() {
		var url = "https://zylkercorp.zohoplatform.com/crm/v2/settings/modules"
        var parameters = new Map()
        var headers = new Map()
        var token = {
            clientId:"1000.NPY9M1V0XXXXXXXXXXXXXXXXXXXF7H",
            redirectUrl:"http://127.0.0.1:5500/redirect.html",
            scope:"ZohoCRM.users.ALL,ZohoCRM.bulk.read,ZohoCRM.modules.ALL,ZohoCRM.settings.ALL,Aaaserver.profile.Read,ZohoCRM.org.ALL,profile.userphoto.READ,ZohoFiles.files.ALL,ZohoCRM.bulk.ALL,ZohoCRM.settings.variable_groups.ALL"
        }
        var accesstoken = await new GetListofModules().getToken(token)
        headers.set("Authorization", "Zoho-oauthtoken " + accesstoken)
        headers.set("If-Modified-Since", "2020-05-15T12:00:00+05:30")
        var requestMethod = "GET"
        var reqBody = null
        var params = "";
        parameters.forEach(function(value, key) {
            if (parameters.has(key)) {
                if (params) {
                    params = params + key + '=' + value + '&';
                }
                else {
                    params = key + '=' + value + '&';
                }
            }
        });
        var apiHeaders = {};
        if(headers) {
            headers.forEach(function(value, key) {
                apiHeaders[key] = value;
            });
        }
        if (params.length > 0){
            url = url + '?' + params.substring(0, params.length - 1);
        }
        var requestObj = {
            uri : url,
            method : requestMethod,
            headers : apiHeaders,
            body : JSON.stringify(reqBody),
            encoding: "utf8",
            allowGetBody : true,
			throwHttpErrors : false
        };
        var result = await new GetListofModules().makeAPICall(requestObj);
        console.log(result.status)
        console.log(result.response)
	}

    async getToken(token) {

        if(listener == 0) {

            window.addEventListener("storage", function(reponse) {
                if(reponse.key === "access_token" && (reponse.oldValue != reponse.newValue || reponse.oldValue == null)){
                    location.reload();
                }
                if(reponse.key === "access_token"){

                    sessionStorage.removeItem("__auth_process");
                }
            }, false);
            listener = 1;
            if(sessionStorage.getItem("__auth_process")) {
                sessionStorage.removeItem("__auth_process");
            }
        }
        ["granted_for_session", "access_token","expires_in","expires_in_sec","location","api_domain","state","__token_init","__auth_process"].forEach(function (k) {
            var isKeyExists = localStorage.hasOwnProperty(k);
            if(isKeyExists) {
                sessionStorage.setItem(k, localStorage[k]);
            }
            localStorage.removeItem(k);
        });
        var valueInStore = sessionStorage.getItem("access_token");
        var tokenInit = sessionStorage.getItem("__token_init");
        if(tokenInit != null && valueInStore != null && Date.now() >= parseInt(tokenInit) + 59 * 60 * 1000){ // check after 59th minute
            valueInStore = null;
            sessionStorage.removeItem("access_token");
        }

        var auth_process = sessionStorage.getItem("__auth_process");
        if ((valueInStore == null && auth_process == null) || (valueInStore == 'undefined' && (auth_process == null || auth_process == "true"))) {
            var accountsUrl = "https://zylkercorp.zohoplatform.com/oauth/v2/auth"
            var clientId;
            var scope;
            var redirectUrl;
            if(token != null) {
                clientId = token.clientId;
                scope = token.scope;
                redirectUrl = token.redirectUrl;
            }

            var fullGrant = sessionStorage.getItem("full_grant");
            var grantedForSession = sessionStorage.getItem("granted_for_session");
            if(sessionStorage.getItem("__token_init") != null && ((fullGrant != null && "true" == full_grant) || (grantedForSession != null && "true" == grantedForSession))) {
                accountsUrl += '/refresh';
            }
            if (clientId && scope) {
                sessionStorage.setItem("__token_init", Date.now());
                sessionStorage.removeItem("access_token");
                sessionStorage.setItem("__auth_process", "true");
                window.open(accountsUrl + "?" + "scope" + "=" + scope + "&"+ "client_id" +"=" + clientId + "&response_type=token&state=zohocrmclient&redirect_uri=" + redirectUrl);
                ["granted_for_session", "access_token","expires_in","expires_in_sec","location","api_domain","state","__token_init","__auth_process"].forEach(function (k) {
                    var isKeyExists = localStorage.hasOwnProperty(k);
                    if(isKeyExists){
                        sessionStorage.setItem(k, localStorage[k]);
                    }
                    localStorage.removeItem(k);
                });
                valueInStore = sessionStorage.getItem("access_token");
            }
        }
        if(token != null && valueInStore != 'undefined'){
            token.accessToken = valueInStore;
        }
        return token.accessToken;
    }

    async makeAPICall(requestDetails) {
        return new Promise(function (resolve, reject) {
            var body, xhr, i;
            body = requestDetails.body || null;
            xhr = new XMLHttpRequest();
            xhr.withCredentials = true;
            xhr.open(requestDetails.method, requestDetails.uri, true);
            for (i in requestDetails.headers) {
                xhr.setRequestHeader(i, requestDetails.headers[i]);
            }
            xhr.send(body);
            xhr.onreadystatechange = function() {
                if(xhr.readyState == 4) {
                    resolve(xhr);
                }
            }
        })
    }
}
Copiedresponse = invokeurl
[
	url: "https://zylkercorp.zohoplatform.com/crm/v2/settings/modules"
	type: GET
	connection:"crm_oauth_connection"
];
info response;

Response JSON Keys

  • global_search_supportedboolean

    Represents if the current module has global search support.
    Possible values- true: The current module has global search support.
    false: The current module does not have global search support.

  • deletableboolean

    Describes if the user can delete a record in the current module.
    Possible values- true: The user can delete a record in the current module.
    false: The user cannot delete a record in the current module.

  • descriptionstring

    Represents the description of the module, if any.

  • creatableboolean

    Represents if the user can create records in the current module.
    Possible values- true: The user can create records in the current module.
    false: The user cannot create records in the current module.

  • inventory_template_supportedboolean

    Represents the module supports inventory template. The value will be true only for Quotes, Invoices, Purchase Orders, and Sales Orders modules.
    Possible values- true: The current module supports inventory template.
    false: The current module does not support inventory template.

  • modified_timedate and time in ISO8601 format

    Represents the date and time of when the module properties were last modified.

  • plural_labelstring

    Represents the plural of the module name. Example: Leads.

  • singular_labelstring

    Represents the singular of the module name. Example: Lead.

  • presence_sub_menuboolean

    Represents if the module has a submenu. For instance, Tasks in Activities is a submenu.
    Possible values- true: The current module has a submenu.
    false: The current module does not have a submenu.

  • triggers_supportedboolean

    Represents if the module supports triggers from custom buttons, workflows, approval etc.
    Possible values- true: The current module supports triggers. For instance, Contacts, Accounts,and so on.
    false: The current module does not support triggers. For instance, Activities, Feeds, and so on.

  • idstring

    Represents the unique ID of the module. For instance, 4150868000000002173

  • visibilityinteger

    Represents the visibility of the module in the org

    • 1- The module is visible, default value

    • 2- The module is hidden

    • XXXX - The sum of the feature numbers that are hidden.

    Each feature has a feature number associated to it as shown below:

    • Default(2,0) = 1

    • WEBUIHIDDEN (2,1) = 2

    • TABMENT(2,2) = 4

    • LOOKUP(2,3) = 8

    • RELATEDLIST(2,4) = 16

    • MULTISELECTLOOKUP(2,5) = 32

    • MODULE_SETTING(2,6) = 64

    • AUTOMATION(2,7) = 128

    • TEMPLATES(2,8) = 256

    • IMPORT(2,9) = 512

    • EXPORT(2,10) = 1024

    • REPORT(2,12) = 4096

    Hence if Visibility column is 4612, it's sum of 4+512+4096 which implies that TabMenu, Import and Export features are hidden.

  • convertableboolean

    Describes if the user can convert the record into another type of record. For example: Convert Leads into Deals.
    Possible values- true: The user can convert the records in the current module into another type of record.
    false: The user cannot convert the records in the current module into another type of record.

  • viewableboolean

    Represents if the user can view the records in the current module.
    Possible values- true: The user can view the records in the current module.
    false: The user cannot view the records in the current module.

  • editableboolean

    Describes if the user can edit a record in the current module.
    Possible values- true: The user can edit a record in the current module.
    false: The user cannot edit a record in the current module.

  • emailTemplate_supportboolean

    Represents if the module supports the usage of the email templates.
    Possible values- true: The module has email template support.
    false: The module does not have email template support.

  • api_supportedboolean

    Describes if the current module is accessible via API.
    Possible values- true: The current module is accessible via API. For instance, Leads, Quotes.
    false: The current module is not accessible via API. For instance, Feeds, Documents, and so on.

  • profilesJSON array

    Each object in the array represents the details of the profile that has access to the module. Example: {
    "name": "Administrator",
    "id": "4150868000000026011"
    },

  • filter_supportedboolean

    Represents if the module supports custom filters besides the system-defined ones in a custom view.
    Possible values- true: The current module has custom-filter support.
    false: The current module does not have custom-filter support.

  • show_as_tabboolean

    Represents if the module is displayed as a tab in the Solutions UI.
    Possible values- true: The module is displayed as a tab in the Vertical Solutions UI. For instance, Contacts, Accounts, and so on.
    false: The module is not displayed as a tab in the Vertical Solutions UI. For instance, Tasks, linking modules, and so on.

  • web_linkstring

    Represents the web link of the module, if any. For instance, https://extensions.zoho.com/plugin/facebook

  • sequence_numberinteger

    Represents the position of the module in the Vertical Solutions.

  • api_namestring

    Represents the API name of the module. Example: Leads.

  • quick_createboolean

    Represents if the module supports quick create.
    Possible values- true: The user can add records using quick create in the current module. For instance, Contacts, Accounts, and so on.
    false: The user cannot add records using quick create in the current module. For instance, Feeds, Forecasts, and so on.

  • modified_byJSON object

    Represents the name and ID of the user who last modified the module properties. For example: "modified_by": {
    "name": "Patricia Boyle",
    "id": "4150868000000225013"
    }

  • generated_typestring

    Represents how the module was created.
    Possible values- default: It is a default module. For instance, Contacts, Accounts, and so on.
    linking: It is a linking module.
    web: It is a web-tab widget.
    custom: It is a custom module.

  • feeds_requiredboolean

    Represents if feeds is enabled for the module.
    Possible values- true: Feeds is enabled for the current module.
    false: Feeds is not enabled for the current module.

  • scoring_supportedboolean

    Represents if the records of the module qualify for the scoring process, if there is one.
    Possible values- true: The current module qualifies for the scoring process.
    false: The current module does not qualify for the scoring process.

  • webform_supportedboolean

    Represents if the records in the module can be created via web forms.
    Possible values- true: The current module supports webforms.
    false: The current module does not support webforms.

  • argumentsJSON array

    Represents the parameters for the link used in Web-tab. Each object represents display name and the value of the argument. Example: "arguments": [
    {
    "name": "sample",
    "value": "users.city"
    }
    ]

  • module_namestring

    Represents the display name of the module.

  • business_card_field_limitinteger

    Represents the number of fields you can have in the business card details.
    Note: Business card details are displayed on the "Details View" page of a record. This is also the information shown when you hover over a lookup field.

  • parent_moduleJSON object

    Represents the details of the parent module, if any. For instance, Activities is the parent module for Tasks, Calls, and Events.

Possible Errors

  • INVALID_URL_PATTERNHTTP 404

    Please check if the URL trying to access is a correct one
    Resolution: The request URL specified is incorrect. Specify a valid request URL. Refer to request URL section above.

  • OAUTH_SCOPE_MISMATCHHTTP 401

    Unauthorized
    Resolution: Client does not have ZohoCRM.settings.modules.READ scope. Create a new client with valid scope. Refer to scope section above.

  • NO_PERMISSIONHTTP 403

    Permission denied to read
    Resolution: The user does not have permission to read records. Contact your system administrator.

  • INTERNAL_ERRORHTTP 500

    Internal Server Error
    Resolution: Unexpected and unhandled exception in the server. Contact support team.

  • INVALID_REQUEST_METHODHTTP 400

    The http request method type is not a valid one
    Resolution: You have specified an invalid HTTP method to access the API URL. Specify a valid request method. Refer to endpoints section above.

  • AUTHORIZATION_FAILEDHTTP 400

    User does not have sufficient privilege to read module details.
    Resolution: The user does not have the permission to retrieve module details. Contact your system administrator.

Sample Response

Copied{
  "modules": [
    {
      "global_search_supported": false,
      "deletable": false,
      "description": null,
      "creatable": false,
      "inventory_template_supported": false,
      "modified_time": null,
      "plural_label": "Home",
      "presence_sub_menu": false,
      "triggers_supported": false,
      "id": "4150868000000002173",
      "visibility": 1,
      "convertable": false,
      "editable": false,
      "emailTemplate_support": false,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        },
        {
          "name": "Standard",
          "id": "4150868000000026014"
        }
      ],
      "filter_supported": false,
      "show_as_tab": true,
      "web_link": null,
      "sequence_number": 1,
      "singular_label": "Home",
      "viewable": true,
      "api_supported": false,
      "api_name": "Home",
      "quick_create": false,
      "modified_by": null,
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": false,
      "webform_supported": false,
      "arguments": [],
      "module_name": "Home",
      "business_card_field_limit": 5,
      "parent_module": {}
    },
    {
      "global_search_supported": true,
      "deletable": true,
      "description": null,
      "creatable": true,
      "inventory_template_supported": false,
      "modified_time": "2020-07-17T11:21:57+05:30",
      "plural_label": "Contacts",
      "presence_sub_menu": true,
      "triggers_supported": true,
      "id": "4150868000000002179",
      "visibility": 1,
      "convertable": false,
      "editable": true,
      "emailTemplate_support": true,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        },
        {
          "name": "Standard",
          "id": "4150868000000026014"
        }
      ],
      "filter_supported": true,
      "show_as_tab": true,
      "web_link": null,
      "sequence_number": 2,
      "singular_label": "Contact",
      "viewable": true,
      "api_supported": true,
      "api_name": "Contacts",
      "quick_create": true,
      "modified_by": {
        "name": "Patricia Boyle",
        "id": "4150868000000225013"
      },
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": true,
      "webform_supported": true,
      "arguments": [],
      "module_name": "Contacts",
      "business_card_field_limit": 5,
      "parent_module": {}
    },
    {
      "global_search_supported": true,
      "deletable": true,
      "description": null,
      "creatable": true,
      "inventory_template_supported": false,
      "modified_time": "2020-02-14T17:50:29+05:30",
      "plural_label": "Accounts",
      "presence_sub_menu": true,
      "triggers_supported": true,
      "id": "4150868000000002177",
      "visibility": 1,
      "convertable": false,
      "editable": true,
      "emailTemplate_support": true,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        },
        {
          "name": "Standard",
          "id": "4150868000000026014"
        }
      ],
      "filter_supported": true,
      "show_as_tab": true,
      "web_link": null,
      "sequence_number": 3,
      "singular_label": "Account",
      "viewable": true,
      "api_supported": true,
      "api_name": "Accounts",
      "quick_create": true,
      "modified_by": {
        "name": "Patricia Boyle",
        "id": "4150868000000225013"
      },
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": true,
      "webform_supported": false,
      "arguments": [],
      "module_name": "Accounts",
      "business_card_field_limit": 5,
      "parent_module": {}
    },
    {
      "global_search_supported": true,
      "deletable": true,
      "description": null,
      "creatable": true,
      "inventory_template_supported": false,
      "modified_time": "2020-07-09T16:00:20+05:30",
      "plural_label": "Deals",
      "presence_sub_menu": true,
      "triggers_supported": true,
      "id": "4150868000000002181",
      "visibility": 1,
      "convertable": false,
      "editable": true,
      "emailTemplate_support": true,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        },
        {
          "name": "Standard",
          "id": "4150868000000026014"
        }
      ],
      "filter_supported": true,
      "show_as_tab": true,
      "web_link": null,
      "sequence_number": 4,
      "singular_label": "Deal",
      "viewable": true,
      "api_supported": true,
      "api_name": "Deals",
      "quick_create": true,
      "modified_by": {
        "name": "Patricia Boyle",
        "id": "4150868000000225013"
      },
      "generated_type": "default",
      "feeds_required": true,
      "scoring_supported": true,
      "webform_supported": false,
      "arguments": [],
      "module_name": "Deals",
      "business_card_field_limit": 5,
      "parent_module": {}
    },
    {
      "global_search_supported": true,
      "deletable": true,
      "description": null,
      "creatable": true,
      "inventory_template_supported": false,
      "modified_time": "2019-08-21T11:34:00+05:30",
      "plural_label": "Tasks",
      "presence_sub_menu": true,
      "triggers_supported": true,
      "id": "4150868000000002193",
      "visibility": 1,
      "convertable": false,
      "editable": true,
      "emailTemplate_support": true,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        },
        {
          "name": "Standard",
          "id": "4150868000000026014"
        }
      ],
      "filter_supported": true,
      "show_as_tab": false,
      "web_link": null,
      "sequence_number": 5,
      "singular_label": "Task",
      "viewable": true,
      "api_supported": true,
      "api_name": "Tasks",
      "quick_create": true,
      "modified_by": {
        "name": "Patricia Boyle",
        "id": "4150868000000225013"
      },
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": false,
      "webform_supported": false,
      "arguments": [],
      "module_name": "Tasks",
      "business_card_field_limit": 5,
      "parent_module": {
        "api_name": "Activities",
        "id": "4150868000000002203"
      }
    },
    {
      "global_search_supported": true,
      "deletable": true,
      "description": null,
      "creatable": true,
      "inventory_template_supported": false,
      "modified_time": null,
      "plural_label": "Meetings",
      "presence_sub_menu": true,
      "triggers_supported": true,
      "id": "4150868000000002195",
      "visibility": 1,
      "convertable": false,
      "editable": true,
      "emailTemplate_support": true,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        },
        {
          "name": "Standard",
          "id": "4150868000000026014"
        }
      ],
      "filter_supported": true,
      "show_as_tab": false,
      "web_link": null,
      "sequence_number": 5,
      "singular_label": "Meeting",
      "viewable": true,
      "api_supported": true,
      "api_name": "Events",
      "quick_create": true,
      "modified_by": null,
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": false,
      "webform_supported": false,
      "arguments": [],
      "module_name": "Events",
      "business_card_field_limit": 5,
      "parent_module": {
        "api_name": "Activities",
        "id": "4150868000000002203"
      }
    },
    {
      "global_search_supported": false,
      "deletable": true,
      "description": null,
      "creatable": true,
      "inventory_template_supported": false,
      "modified_time": null,
      "plural_label": "Activities",
      "presence_sub_menu": false,
      "triggers_supported": false,
      "id": "4150868000000002203",
      "visibility": 1,
      "convertable": false,
      "editable": true,
      "emailTemplate_support": false,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        },
        {
          "name": "Standard",
          "id": "4150868000000026014"
        }
      ],
      "filter_supported": true,
      "show_as_tab": true,
      "web_link": null,
      "sequence_number": 5,
      "singular_label": "Activity",
      "viewable": true,
      "api_supported": true,
      "api_name": "Activities",
      "quick_create": false,
      "modified_by": null,
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": false,
      "webform_supported": false,
      "arguments": [],
      "module_name": "Activities",
      "business_card_field_limit": 5,
      "parent_module": {}
    },
    {
      "global_search_supported": true,
      "deletable": true,
      "description": null,
      "creatable": true,
      "inventory_template_supported": false,
      "modified_time": null,
      "plural_label": "Calls",
      "presence_sub_menu": true,
      "triggers_supported": true,
      "id": "4150868000000033015",
      "visibility": 1,
      "convertable": false,
      "editable": true,
      "emailTemplate_support": true,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        },
        {
          "name": "Standard",
          "id": "4150868000000026014"
        }
      ],
      "filter_supported": true,
      "show_as_tab": false,
      "web_link": null,
      "sequence_number": 5,
      "singular_label": "Call",
      "viewable": true,
      "api_supported": true,
      "api_name": "Calls",
      "quick_create": true,
      "modified_by": null,
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": false,
      "webform_supported": false,
      "arguments": [],
      "module_name": "Calls",
      "business_card_field_limit": 5,
      "parent_module": {
        "api_name": "Activities",
        "id": "4150868000000002203"
      }
    },
    {
      "global_search_supported": true,
      "deletable": true,
      "description": null,
      "creatable": true,
      "inventory_template_supported": false,
      "modified_time": "2020-03-26T14:27:57+05:30",
      "plural_label": "Products",
      "presence_sub_menu": true,
      "triggers_supported": true,
      "id": "4150868000000002213",
      "visibility": 1,
      "convertable": false,
      "editable": true,
      "emailTemplate_support": true,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        },
        {
          "name": "Standard",
          "id": "4150868000000026014"
        }
      ],
      "filter_supported": true,
      "show_as_tab": true,
      "web_link": null,
      "sequence_number": 6,
      "singular_label": "Product",
      "viewable": true,
      "api_supported": true,
      "api_name": "Products",
      "quick_create": true,
      "modified_by": {
        "name": "Patricia Boyle",
        "id": "4150868000000225013"
      },
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": false,
      "webform_supported": false,
      "arguments": [],
      "module_name": "Products",
      "business_card_field_limit": 5,
      "parent_module": {}
    },
    {
      "global_search_supported": true,
      "deletable": true,
      "description": null,
      "creatable": true,
      "inventory_template_supported": true,
      "modified_time": "2020-07-06T17:33:44+05:30",
      "plural_label": "Quotes",
      "presence_sub_menu": true,
      "triggers_supported": true,
      "id": "4150868000000002219",
      "visibility": 1,
      "convertable": true,
      "editable": true,
      "emailTemplate_support": true,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        },
        {
          "name": "Standard",
          "id": "4150868000000026014"
        }
      ],
      "filter_supported": true,
      "show_as_tab": true,
      "web_link": null,
      "sequence_number": 7,
      "singular_label": "Quote",
      "viewable": true,
      "api_supported": true,
      "api_name": "Quotes",
      "quick_create": true,
      "modified_by": {
        "name": "Patricia Boyle",
        "id": "4150868000000225013"
      },
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": false,
      "webform_supported": false,
      "arguments": [],
      "module_name": "Quotes",
      "business_card_field_limit": 5,
      "parent_module": {}
    },
    {
      "global_search_supported": true,
      "deletable": true,
      "description": null,
      "creatable": true,
      "inventory_template_supported": true,
      "modified_time": "2019-09-24T11:34:53+05:30",
      "plural_label": "Invoices",
      "presence_sub_menu": true,
      "triggers_supported": true,
      "id": "4150868000000002225",
      "visibility": 1,
      "convertable": false,
      "editable": true,
      "emailTemplate_support": true,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        },
        {
          "name": "Standard",
          "id": "4150868000000026014"
        }
      ],
      "filter_supported": true,
      "show_as_tab": true,
      "web_link": null,
      "sequence_number": 8,
      "singular_label": "Invoice",
      "viewable": true,
      "api_supported": true,
      "api_name": "Invoices",
      "quick_create": true,
      "modified_by": {
        "name": "Patricia Boyle",
        "id": "4150868000000225013"
      },
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": false,
      "webform_supported": false,
      "arguments": [],
      "module_name": "Invoices",
      "business_card_field_limit": 5,
      "parent_module": {}
    },
    {
      "global_search_supported": false,
      "deletable": false,
      "description": null,
      "creatable": false,
      "inventory_template_supported": false,
      "modified_time": null,
      "plural_label": "SalesInbox",
      "presence_sub_menu": false,
      "triggers_supported": false,
      "id": "4150868000000118001",
      "visibility": 1,
      "convertable": false,
      "editable": false,
      "emailTemplate_support": false,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        },
        {
          "name": "Standard",
          "id": "4150868000000026014"
        }
      ],
      "filter_supported": false,
      "show_as_tab": true,
      "web_link": null,
      "sequence_number": 9,
      "singular_label": "SalesInbox",
      "viewable": true,
      "api_supported": false,
      "api_name": "SalesInbox",
      "quick_create": false,
      "modified_by": null,
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": false,
      "webform_supported": false,
      "arguments": [],
      "module_name": "SalesInbox",
      "business_card_field_limit": 5,
      "parent_module": {}
    },
    {
      "global_search_supported": false,
      "deletable": false,
      "description": null,
      "creatable": false,
      "inventory_template_supported": false,
      "modified_time": null,
      "plural_label": "Feeds",
      "presence_sub_menu": false,
      "triggers_supported": false,
      "id": "4150868000000071001",
      "visibility": 1,
      "convertable": false,
      "editable": false,
      "emailTemplate_support": false,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        },
        {
          "name": "Standard",
          "id": "4150868000000026014"
        }
      ],
      "filter_supported": false,
      "show_as_tab": true,
      "web_link": null,
      "sequence_number": 10,
      "singular_label": "Feeds",
      "viewable": true,
      "api_supported": false,
      "api_name": "Feeds",
      "quick_create": false,
      "modified_by": null,
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": false,
      "webform_supported": false,
      "arguments": [],
      "module_name": "Feeds",
      "business_card_field_limit": 5,
      "parent_module": {}
    },
    {
      "global_search_supported": true,
      "deletable": true,
      "description": null,
      "creatable": true,
      "inventory_template_supported": false,
      "modified_time": "2020-04-06T14:48:31+05:30",
      "plural_label": "Campaigns",
      "presence_sub_menu": true,
      "triggers_supported": true,
      "id": "4150868000000002183",
      "visibility": 1,
      "convertable": false,
      "editable": true,
      "emailTemplate_support": true,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        },
        {
          "name": "Standard",
          "id": "4150868000000026014"
        }
      ],
      "filter_supported": true,
      "show_as_tab": true,
      "web_link": null,
      "sequence_number": 11,
      "singular_label": "Campaign",
      "viewable": true,
      "api_supported": true,
      "api_name": "Campaigns",
      "quick_create": true,
      "modified_by": {
        "name": "Patricia Boyle",
        "id": "4150868000000225013"
      },
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": false,
      "webform_supported": false,
      "arguments": [],
      "module_name": "Campaigns",
      "business_card_field_limit": 5,
      "parent_module": {}
    },
    {
      "global_search_supported": true,
      "deletable": true,
      "description": null,
      "creatable": true,
      "inventory_template_supported": false,
      "modified_time": "2020-04-16T14:35:22+05:30",
      "plural_label": "Vendors",
      "presence_sub_menu": true,
      "triggers_supported": true,
      "id": "4150868000000002215",
      "visibility": 1,
      "convertable": false,
      "editable": true,
      "emailTemplate_support": true,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        },
        {
          "name": "Standard",
          "id": "4150868000000026014"
        }
      ],
      "filter_supported": true,
      "show_as_tab": true,
      "web_link": null,
      "sequence_number": 12,
      "singular_label": "Vendor",
      "viewable": true,
      "api_supported": true,
      "api_name": "Vendors",
      "quick_create": true,
      "modified_by": {
        "name": "Patricia Boyle",
        "id": "4150868000000225013"
      },
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": false,
      "webform_supported": false,
      "arguments": [],
      "module_name": "Vendors",
      "business_card_field_limit": 5,
      "parent_module": {}
    },
    {
      "global_search_supported": true,
      "deletable": true,
      "description": null,
      "creatable": true,
      "inventory_template_supported": false,
      "modified_time": "2019-12-26T10:14:29+05:30",
      "plural_label": "Price Books",
      "presence_sub_menu": true,
      "triggers_supported": true,
      "id": "4150868000000002217",
      "visibility": 1,
      "convertable": false,
      "editable": true,
      "emailTemplate_support": true,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        },
        {
          "name": "Standard",
          "id": "4150868000000026014"
        }
      ],
      "filter_supported": true,
      "show_as_tab": true,
      "web_link": null,
      "sequence_number": 13,
      "singular_label": "Price Book",
      "viewable": true,
      "api_supported": true,
      "api_name": "Price_Books",
      "quick_create": true,
      "modified_by": {
        "name": "Patricia Boyle",
        "id": "4150868000000225013"
      },
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": false,
      "webform_supported": false,
      "arguments": [],
      "module_name": "PriceBooks",
      "business_card_field_limit": 5,
      "parent_module": {}
    },
    {
      "global_search_supported": true,
      "deletable": true,
      "description": null,
      "creatable": true,
      "inventory_template_supported": false,
      "modified_time": null,
      "plural_label": "Cases",
      "presence_sub_menu": true,
      "triggers_supported": true,
      "id": "4150868000000002209",
      "visibility": 1,
      "convertable": false,
      "editable": true,
      "emailTemplate_support": true,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        },
        {
          "name": "Standard",
          "id": "4150868000000026014"
        }
      ],
      "filter_supported": true,
      "show_as_tab": true,
      "web_link": null,
      "sequence_number": 14,
      "singular_label": "Case",
      "viewable": true,
      "api_supported": true,
      "api_name": "Cases",
      "quick_create": true,
      "modified_by": null,
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": false,
      "webform_supported": true,
      "arguments": [],
      "module_name": "Cases",
      "business_card_field_limit": 5,
      "parent_module": {}
    },
    {
      "global_search_supported": true,
      "deletable": true,
      "description": null,
      "creatable": true,
      "inventory_template_supported": false,
      "modified_time": "2020-02-25T10:37:59+05:30",
      "plural_label": "Solutions",
      "presence_sub_menu": true,
      "triggers_supported": true,
      "id": "4150868000000002211",
      "visibility": 1,
      "convertable": false,
      "editable": true,
      "emailTemplate_support": true,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        },
        {
          "name": "Standard",
          "id": "4150868000000026014"
        }
      ],
      "filter_supported": true,
      "show_as_tab": true,
      "web_link": null,
      "sequence_number": 15,
      "singular_label": "Solution",
      "viewable": true,
      "api_supported": true,
      "api_name": "Solutions",
      "quick_create": true,
      "modified_by": {
        "name": "Patricia Boyle",
        "id": "4150868000000225013"
      },
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": false,
      "webform_supported": false,
      "arguments": [],
      "module_name": "Solutions",
      "business_card_field_limit": 5,
      "parent_module": {}
    },
    {
      "global_search_supported": false,
      "deletable": false,
      "description": null,
      "creatable": false,
      "inventory_template_supported": false,
      "modified_time": null,
      "plural_label": "Documents",
      "presence_sub_menu": false,
      "triggers_supported": false,
      "id": "4150868000000056001",
      "visibility": 1,
      "convertable": false,
      "editable": false,
      "emailTemplate_support": false,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        },
        {
          "name": "Standard",
          "id": "4150868000000026014"
        }
      ],
      "filter_supported": false,
      "show_as_tab": true,
      "web_link": null,
      "sequence_number": 16,
      "singular_label": "Documents",
      "viewable": true,
      "api_supported": false,
      "api_name": "Documents",
      "quick_create": false,
      "modified_by": null,
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": false,
      "webform_supported": false,
      "arguments": [],
      "module_name": "Documents",
      "business_card_field_limit": 5,
      "parent_module": {}
    },
    {
      "global_search_supported": false,
      "deletable": false,
      "description": null,
      "creatable": false,
      "inventory_template_supported": false,
      "modified_time": null,
      "plural_label": "Forecasts",
      "presence_sub_menu": true,
      "triggers_supported": false,
      "id": "4150868000000002201",
      "visibility": 1,
      "convertable": false,
      "editable": false,
      "emailTemplate_support": false,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        },
        {
          "name": "Standard",
          "id": "4150868000000026014"
        }
      ],
      "filter_supported": false,
      "show_as_tab": true,
      "web_link": null,
      "sequence_number": 17,
      "singular_label": "Forecast",
      "viewable": true,
      "api_supported": false,
      "api_name": "Forecasts",
      "quick_create": false,
      "modified_by": null,
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": false,
      "webform_supported": false,
      "arguments": [],
      "module_name": "Forecasts",
      "business_card_field_limit": 5,
      "parent_module": {}
    },
    {
      "global_search_supported": true,
      "deletable": false,
      "description": null,
      "creatable": false,
      "inventory_template_supported": false,
      "modified_time": null,
      "plural_label": "Visits",
      "presence_sub_menu": true,
      "triggers_supported": false,
      "id": "4150868000000077007",
      "visibility": 1,
      "convertable": false,
      "editable": false,
      "emailTemplate_support": true,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        }
      ],
      "filter_supported": true,
      "show_as_tab": true,
      "web_link": null,
      "sequence_number": 18,
      "singular_label": "Visit",
      "viewable": true,
      "api_supported": true,
      "api_name": "Visits",
      "quick_create": false,
      "modified_by": null,
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": false,
      "webform_supported": false,
      "arguments": [],
      "module_name": "Visits",
      "business_card_field_limit": 5,
      "parent_module": {}
    },
    {
      "global_search_supported": false,
      "deletable": false,
      "description": null,
      "creatable": false,
      "inventory_template_supported": false,
      "modified_time": null,
      "plural_label": "Social",
      "presence_sub_menu": false,
      "triggers_supported": false,
      "id": "4150868000000065001",
      "visibility": 1,
      "convertable": false,
      "editable": false,
      "emailTemplate_support": false,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        }
      ],
      "filter_supported": false,
      "show_as_tab": true,
      "web_link": null,
      "sequence_number": 19,
      "singular_label": "Social",
      "viewable": true,
      "api_supported": false,
      "api_name": "Social",
      "quick_create": false,
      "modified_by": null,
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": false,
      "webform_supported": false,
      "arguments": [],
      "module_name": "Social",
      "business_card_field_limit": 5,
      "parent_module": {}
    },
    {
      "global_search_supported": false,
      "deletable": false,
      "description": null,
      "creatable": false,
      "inventory_template_supported": false,
      "modified_time": null,
      "plural_label": "My Jobs",
      "presence_sub_menu": false,
      "triggers_supported": false,
      "id": "4150868000000244280",
      "visibility": 1,
      "convertable": false,
      "editable": false,
      "emailTemplate_support": false,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        },
        {
          "name": "Standard",
          "id": "4150868000000026014"
        }
      ],
      "filter_supported": true,
      "show_as_tab": false,
      "web_link": null,
      "sequence_number": 20,
      "singular_label": "My Jobs",
      "viewable": true,
      "api_supported": true,
      "api_name": "Approvals",
      "quick_create": false,
      "modified_by": null,
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": false,
      "webform_supported": false,
      "arguments": [],
      "module_name": "Approvals",
      "business_card_field_limit": 5,
      "parent_module": {}
    },
    {
      "global_search_supported": true,
      "deletable": true,
      "description": null,
      "creatable": true,
      "inventory_template_supported": false,
      "modified_time": "2020-07-17T11:21:58+05:30",
      "plural_label": "Leads",
      "presence_sub_menu": true,
      "triggers_supported": true,
      "id": "4150868000000002175",
      "visibility": 1,
      "convertable": true,
      "editable": true,
      "emailTemplate_support": true,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        }
      ],
      "filter_supported": true,
      "show_as_tab": true,
      "web_link": null,
      "sequence_number": 23,
      "singular_label": "Lead",
      "viewable": true,
      "api_supported": true,
      "api_name": "Leads",
      "quick_create": true,
      "modified_by": {
        "name": "Patricia Boyle",
        "id": "4150868000000225013"
      },
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": true,
      "webform_supported": true,
      "arguments": [],
      "module_name": "Leads",
      "business_card_field_limit": 5,
      "parent_module": {}
    },
    {
      "global_search_supported": false,
      "deletable": false,
      "description": null,
      "creatable": false,
      "inventory_template_supported": false,
      "modified_time": null,
      "plural_label": "Reports",
      "presence_sub_menu": false,
      "triggers_supported": false,
      "id": "4150868000000002185",
      "visibility": 1,
      "convertable": false,
      "editable": false,
      "emailTemplate_support": false,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        },
        {
          "name": "Standard",
          "id": "4150868000000026014"
        }
      ],
      "filter_supported": false,
      "show_as_tab": true,
      "web_link": null,
      "sequence_number": 24,
      "singular_label": "Report",
      "viewable": true,
      "api_supported": false,
      "api_name": "Reports",
      "quick_create": false,
      "modified_by": null,
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": false,
      "webform_supported": false,
      "arguments": [],
      "module_name": "Reports",
      "business_card_field_limit": 5,
      "parent_module": {}
    },
    {
      "global_search_supported": false,
      "deletable": false,
      "description": null,
      "creatable": false,
      "inventory_template_supported": false,
      "modified_time": "2019-08-27T10:46:36+05:30",
      "plural_label": "Analytics",
      "presence_sub_menu": false,
      "triggers_supported": false,
      "id": "4150868000000002187",
      "visibility": 1,
      "convertable": false,
      "editable": false,
      "emailTemplate_support": false,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        },
        {
          "name": "Standard",
          "id": "4150868000000026014"
        }
      ],
      "filter_supported": false,
      "show_as_tab": true,
      "web_link": null,
      "sequence_number": 25,
      "singular_label": "Analytics",
      "viewable": true,
      "api_supported": false,
      "api_name": "Dashboards",
      "quick_create": false,
      "modified_by": {
        "name": "Patricia Boyle",
        "id": "4150868000000225013"
      },
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": false,
      "webform_supported": false,
      "arguments": [],
      "module_name": "Dashboards",
      "business_card_field_limit": 5,
      "parent_module": {}
    },
    {
      "global_search_supported": true,
      "deletable": true,
      "description": null,
      "creatable": true,
      "inventory_template_supported": true,
      "modified_time": "2019-08-27T10:46:36+05:30",
      "plural_label": "Purchase Orders",
      "presence_sub_menu": true,
      "triggers_supported": true,
      "id": "4150868000000002223",
      "visibility": 1,
      "convertable": false,
      "editable": true,
      "emailTemplate_support": true,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        },
        {
          "name": "Standard",
          "id": "4150868000000026014"
        }
      ],
      "filter_supported": true,
      "show_as_tab": true,
      "web_link": null,
      "sequence_number": 26,
      "singular_label": "Purchase Order",
      "viewable": true,
      "api_supported": true,
      "api_name": "Purchase_Orders",
      "quick_create": true,
      "modified_by": {
        "name": "Patricia Boyle",
        "id": "4150868000000225013"
      },
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": false,
      "webform_supported": false,
      "arguments": [],
      "module_name": "PurchaseOrders",
      "business_card_field_limit": 5,
      "parent_module": {}
    },
    {
      "global_search_supported": true,
      "deletable": true,
      "description": null,
      "creatable": true,
      "inventory_template_supported": true,
      "modified_time": "2020-07-06T19:09:38+05:30",
      "plural_label": "Sales Orders",
      "presence_sub_menu": true,
      "triggers_supported": true,
      "id": "4150868000000002221",
      "visibility": 1,
      "convertable": true,
      "editable": true,
      "emailTemplate_support": true,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        },
        {
          "name": "Standard",
          "id": "4150868000000026014"
        }
      ],
      "filter_supported": true,
      "show_as_tab": true,
      "web_link": null,
      "sequence_number": 27,
      "singular_label": "Sales Order",
      "viewable": true,
      "api_supported": true,
      "api_name": "Sales_Orders",
      "quick_create": true,
      "modified_by": {
        "name": "Patricia Boyle",
        "id": "4150868000000225013"
      },
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": false,
      "webform_supported": false,
      "arguments": [],
      "module_name": "SalesOrders",
      "business_card_field_limit": 5,
      "parent_module": {}
    },
    {
      "global_search_supported": true,
      "deletable": true,
      "description": null,
      "creatable": true,
      "inventory_template_supported": false,
      "modified_time": null,
      "plural_label": "Notes",
      "presence_sub_menu": false,
      "triggers_supported": false,
      "id": "4150868000000002197",
      "visibility": 1,
      "convertable": false,
      "editable": true,
      "emailTemplate_support": false,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        },
        {
          "name": "Standard",
          "id": "4150868000000026014"
        }
      ],
      "filter_supported": false,
      "show_as_tab": false,
      "web_link": null,
      "sequence_number": 29,
      "singular_label": "Note",
      "viewable": true,
      "api_supported": true,
      "api_name": "Notes",
      "quick_create": false,
      "modified_by": null,
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": false,
      "webform_supported": false,
      "arguments": [],
      "module_name": "Notes",
      "business_card_field_limit": 5,
      "parent_module": {}
    },
    {
      "global_search_supported": false,
      "deletable": true,
      "description": null,
      "creatable": true,
      "inventory_template_supported": false,
      "modified_time": null,
      "plural_label": "Attachments",
      "presence_sub_menu": false,
      "triggers_supported": false,
      "id": "4150868000000002227",
      "visibility": 1,
      "convertable": false,
      "editable": false,
      "emailTemplate_support": false,
      "profiles": [
        {
          "name": "Administrator",
          "id": "4150868000000026011"
        },
        {
          "name": "Standard",
          "id": "4150868000000026014"
        }
      ],
      "filter_supported": false,
      "show_as_tab": false,
      "web_link": null,
      "sequence_number": 33,
      "singular_label": "Attachment",
      "viewable": true,
      "api_supported": true,
      "api_name": "Attachments",
      "quick_create": false,
      "modified_by": null,
      "generated_type": "default",
      "feeds_required": false,
      "scoring_supported": false,
      "webform_supported": false,
      "arguments": [],
      "module_name": "Attachments",
      "business_card_field_limit": 5,
      "parent_module": {}
    }
  ]
}