Modules API
Zoho CRM has standard modules such as Leads, Accounts, Contacts, Deals, Forecasts, Activities, and so on. Using Zoho CRM 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 CRM account.
Endpoints
Request Details
Request URL
{api-domain}/crm/{version}/settings/modules
Header
Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52
Scope
scope=ZohoCRM.settings.ALL
(or)
scope=ZohoCRM.settings.modules.{operation_type}
Possible operation types
ALL - Full data access
READ - Get module data
- Refer to the key api_name in the JSON data while accessing the resource. Every module, field, and related list 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 Zoho CRM 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. 
- For the Events module, - The singular_label and plural_label will be Meeting and Meetings, respectively. 
- The module_name will be Meetings. 
- The api_name will remain Events. 
 
- The modules removed from Organize will also be fetched in the response. 
- Use the profiles key in the response to know the profiles that have permission to view a particular module. 
Sample Request
Copiedcurl "https://www.zohoapis.com/crm/v3/settings/modules"
-X GET
-H "Authorization: Zoho-oauthtoken 1000.03xxxxxxxxxxxxxxxxxa5317.dxxxxxxxxxxxxxxxxxfa"Copiedresponse = invokeurl
[
	url: "https://www.zohoapis.com/crm/v3/settings/modules"
	type: GET
	connection:"crm_oauth_connection"
];
info response;Response JSON Keys
- global_search_supportedbooleanRepresents 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.
- deletablebooleanDescribes 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.
- descriptionstringRepresents the description of the module, if any. 
- creatablebooleanRepresents 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_supportedbooleanRepresents 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 formatRepresents the date and time of when the module properties were last modified. 
- plural_labelstringRepresents the plural of the module name. Example: Leads. 
- singular_labelstringRepresents the singular of the module name. Example: Lead. 
- presence_sub_menubooleanRepresents 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_supportedbooleanRepresents 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.
- idstringRepresents the unique ID of the module. For instance, 4150868000000002173 
- visiblebooleanRepresents if the module is visible to the current user's profile. 
- visibilityintegerRepresents the visibility of the module to the current user. - 1- The module is visible 
- 0- The module is hidden 
- -1 - The module is unavailable/hidden by the system itself due to the downgrading of the plan. 
 
- convertablebooleanDescribes 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.
- viewablebooleanRepresents 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.
- editablebooleanDescribes 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_supportbooleanRepresents 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_supportedbooleanDescribes 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 arrayEach object in the array represents the details of the profile that has access to the module. Example: { 
 "name": "Administrator",
 "id": "4150868000000026011"
 },
- filter_supportedbooleanRepresents 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_tabbooleanRepresents if the module is displayed as a tab in the CRM UI. 
 Possible values- true: The module is displayed as a tab in the CRM UI. For instance, Contacts, Accounts, and so on.
 false: The module is not displayed as a tab in the CRM UI. For instance, Notes, Attachments, Linking modules, and so on.
- web_linkstringRepresents the web link of the module, if any. For instance, https://extensions.zoho.com/plugin/facebook 
- sequence_numberintegerRepresents the position of the module in the CRM. 
- api_namestringRepresents the API name of the module. Example: Leads. 
- quick_createbooleanRepresents 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 objectRepresents the name and ID of the user who last modified the module properties. For example: "modified_by": { 
 "name": "Patricia Boyle",
 "id": "4150868000000225013"
 }
- generated_typestringRepresents 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.
 subform: It is a line item subform in one of the inventory modules.
 web: It is a web-tab widget.
 custom: It is a custom module.
- feeds_requiredbooleanRepresents 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_supportedbooleanRepresents 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_supportedbooleanRepresents 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 arrayRepresents 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_namestringRepresents the display name of the module. 
- business_card_field_limitintegerRepresents 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.
- custom_viewJSON objectRepresents the details of the custom views created for this module. If you pass the custom view ID, the response contains the details of that custom view. Otherwise, the system fetches the details of the default view in that module. 
- parent_moduleJSON objectRepresents 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 404Please 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 401Unauthorized 
 Resolution: Client does not have ZohoCRM.settings.modules.READ scope. Create a new client with valid scope. Refer to scope section above.
- NO_PERMISSIONHTTP 403Permission denied to read 
 Resolution: The user does not have permission to read records. Contact your system administrator.
- INTERNAL_ERRORHTTP 500Internal Server Error 
 Resolution: Unexpected and unhandled exception in the server. Contact support team.
- INVALID_REQUEST_METHODHTTP 400The 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 400User 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": "3652397000000002173",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "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": "2021-10-26T11:56:01+05:30",
            "plural_label": "Leads",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000000002175",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": true,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 2,
            "singular_label": "Lead",
            "viewable": true,
            "api_supported": true,
            "api_name": "Leads",
            "quick_create": true,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "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": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "inventory_template_supported": false,
            "modified_time": "2021-12-31T04:15:01+05:30",
            "plural_label": "Contacts",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000000002179",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 3,
            "singular_label": "Contact",
            "viewable": true,
            "api_supported": true,
            "api_name": "Contacts",
            "quick_create": true,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "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-10-20T18:39:22+05:30",
            "plural_label": "Accounts",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000000002177",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 4,
            "singular_label": "Account",
            "viewable": true,
            "api_supported": true,
            "api_name": "Accounts",
            "quick_create": true,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "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": "2021-03-03T20:47:53+05:30",
            "plural_label": "Deals",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000000002181",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 5,
            "singular_label": "Deal",
            "viewable": true,
            "api_supported": true,
            "api_name": "Deals",
            "quick_create": true,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "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": null,
            "plural_label": "Tasks",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000000002193",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 6,
            "singular_label": "Task",
            "viewable": true,
            "api_supported": true,
            "api_name": "Tasks",
            "quick_create": true,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "Tasks",
            "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": "Meetings",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000000002195",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 6,
            "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": "Meetings",
            "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": "Activities",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000000002203",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 6,
            "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": "2019-07-28T12:55:47+05:30",
            "plural_label": "Calls",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000000033015",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 6,
            "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": {}
        },
        {
            "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": "3652397000000002185",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": false,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 7,
            "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": null,
            "plural_label": "Analytics",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000000002187",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": false,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 8,
            "singular_label": "Analytics",
            "viewable": true,
            "api_supported": false,
            "api_name": "Dashboards",
            "quick_create": false,
            "modified_by": null,
            "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": false,
            "modified_time": "2021-10-26T12:22:56+05:30",
            "plural_label": "Products",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000000002213",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 9,
            "singular_label": "Product",
            "viewable": true,
            "api_supported": true,
            "api_name": "Products",
            "quick_create": true,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "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": null,
            "plural_label": "Quotes",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000000002219",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": true,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 10,
            "singular_label": "Quote",
            "viewable": true,
            "api_supported": true,
            "api_name": "Quotes",
            "quick_create": true,
            "modified_by": null,
            "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": null,
            "plural_label": "Sales Orders",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000000002221",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": true,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 11,
            "singular_label": "Sales Order",
            "viewable": true,
            "api_supported": true,
            "api_name": "Sales_Orders",
            "quick_create": true,
            "modified_by": null,
            "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": true,
            "modified_time": null,
            "plural_label": "Purchase Orders",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000000002223",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 12,
            "singular_label": "Purchase Order",
            "viewable": true,
            "api_supported": true,
            "api_name": "Purchase_Orders",
            "quick_create": true,
            "modified_by": null,
            "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": null,
            "plural_label": "Invoices",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000000002225",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 13,
            "singular_label": "Invoice",
            "viewable": true,
            "api_supported": true,
            "api_name": "Invoices",
            "quick_create": true,
            "modified_by": null,
            "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": "3652397000000118001",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": false,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 14,
            "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": "3652397000000071001",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": false,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 15,
            "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": "2021-01-22T04:14:02+05:30",
            "plural_label": "Campaigns",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000000002183",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 16,
            "singular_label": "Campaign",
            "viewable": true,
            "api_supported": true,
            "api_name": "Campaigns",
            "quick_create": true,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "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": null,
            "plural_label": "Vendors",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000000002215",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 17,
            "singular_label": "Vendor",
            "viewable": true,
            "api_supported": true,
            "api_name": "Vendors",
            "quick_create": true,
            "modified_by": null,
            "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": null,
            "plural_label": "Price Books",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000000002217",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 18,
            "singular_label": "Price Book",
            "viewable": true,
            "api_supported": true,
            "api_name": "Price_Books",
            "quick_create": true,
            "modified_by": null,
            "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": "3652397000000002209",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 19,
            "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": null,
            "plural_label": "Solutions",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000000002211",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 20,
            "singular_label": "Solution",
            "viewable": true,
            "api_supported": true,
            "api_name": "Solutions",
            "quick_create": true,
            "modified_by": null,
            "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": "3652397000000056001",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": false,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 21,
            "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": "3652397000000002201",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": false,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 22,
            "singular_label": "Forecast",
            "viewable": true,
            "api_supported": true,
            "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": "3652397000000077007",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 23,
            "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": "2021-02-16T11:50:52+05:30",
            "track_current_data": true,
            "plural_label": "Stage History",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000000174001",
            "isBlueprintSupported": false,
            "visible": false,
            "visibility": 2,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 24,
            "singular_label": "Stage History",
            "viewable": true,
            "api_supported": true,
            "api_name": "DealHistory",
            "quick_create": false,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "generated_type": "field_tracker",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "DealHistory",
            "business_card_field_limit": 5,
            "parent_module": {
                "api_name": "Deals",
                "id": "3652397000000002181"
            }
        },
        {
            "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": "3652397000000065001",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": false,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 24,
            "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": true,
            "deletable": true,
            "description": null,
            "creatable": false,
            "inventory_template_supported": false,
            "modified_time": "2020-10-29T12:27:01+05:30",
            "plural_label": "Subform 1",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000002899482",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 2,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": false,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 25,
            "singular_label": "Subform 1",
            "viewable": true,
            "api_supported": true,
            "api_name": "Subform_1",
            "quick_create": false,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "generated_type": "subform",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "LinkingModule10",
            "business_card_field_limit": 5,
            "parent_module": {
                "api_name": "Deals",
                "id": "3652397000000002181"
            }
        },
        {
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": false,
            "inventory_template_supported": false,
            "modified_time": "2020-10-20T18:39:22+05:30",
            "plural_label": "Stakeholders",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000002836011",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 2,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": false,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 25,
            "singular_label": "Stakeholders",
            "viewable": true,
            "api_supported": true,
            "api_name": "Stakeholders",
            "quick_create": false,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "generated_type": "subform",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "LinkingModule8",
            "business_card_field_limit": 5,
            "parent_module": {
                "api_name": "Accounts",
                "id": "3652397000000002177"
            }
        },
        {
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "inventory_template_supported": false,
            "modified_time": null,
            "plural_label": "Chat Inbox",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000006068019",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": "https://app.chatinbox.net",
            "sequence_number": 25,
            "singular_label": "Chat Inbox",
            "viewable": true,
            "api_supported": false,
            "api_name": "startnewchat__Chat_Inbox",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "webtab_link",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "WebTab1",
            "business_card_field_limit": 5,
            "parent_module": {}
        },
        {
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": false,
            "inventory_template_supported": false,
            "modified_time": "2020-04-29T12:28:27+05:30",
            "plural_label": "Languages",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000002120033",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 2,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": false,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 25,
            "singular_label": "Languages",
            "viewable": true,
            "api_supported": true,
            "api_name": "Languages1",
            "quick_create": false,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "generated_type": "subform",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "LinkingModule5",
            "business_card_field_limit": 5,
            "parent_module": {
                "api_name": "Students",
                "id": "3652397000001983072"
            }
        },
        {
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": false,
            "inventory_template_supported": false,
            "modified_time": "2020-05-20T10:21:46+05:30",
            "plural_label": "Subform 2",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000000701031",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 2,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": false,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 25,
            "singular_label": "Subform 2",
            "viewable": true,
            "api_supported": true,
            "api_name": "Subform_2",
            "quick_create": false,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "generated_type": "subform",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "LinkingModule2",
            "business_card_field_limit": 5,
            "parent_module": {
                "api_name": "Leads",
                "id": "3652397000000002175"
            }
        },
        {
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "inventory_template_supported": false,
            "modified_time": null,
            "plural_label": "Desk",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000000209007",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 25,
            "singular_label": "Desk",
            "viewable": false,
            "api_supported": false,
            "api_name": "Desk",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "Desk",
            "business_card_field_limit": 5,
            "parent_module": {}
        },
        {
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": false,
            "inventory_template_supported": false,
            "modified_time": "2020-04-29T18:17:29+05:30",
            "plural_label": "Languages1",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000000372341",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 2,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": false,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 25,
            "singular_label": "Languages1",
            "viewable": true,
            "api_supported": true,
            "api_name": "Languages",
            "quick_create": false,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "generated_type": "subform",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "LinkingModule1",
            "business_card_field_limit": 5,
            "parent_module": {
                "api_name": "Leads",
                "id": "3652397000000002175"
            }
        },
        {
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "inventory_template_supported": false,
            "modified_time": null,
            "plural_label": "Mailchimp",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000001634941",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": "https://extensions.zoho.com/plugin/mailchimp",
            "sequence_number": 25,
            "singular_label": "Mailchimp",
            "viewable": true,
            "api_supported": false,
            "api_name": "MailChimp",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "webtab_link",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [
                {
                    "name": "action",
                    "value": "showMappings"
                },
                {
                    "name": "crmzgid",
                    "value": "org.recordId"
                }
            ],
            "module_name": "Mailchimp",
            "business_card_field_limit": 5,
            "parent_module": {}
        },
        {
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "inventory_template_supported": false,
            "modified_time": "2020-01-27T14:54:28+05:30",
            "plural_label": "Mailchimp Audiences",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000001634007",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 25,
            "singular_label": "Mailchimp Audience",
            "viewable": true,
            "api_supported": true,
            "api_name": "mailchimp0__MailChimp_Lists",
            "quick_create": true,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "generated_type": "custom",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": true,
            "arguments": [],
            "module_name": "CustomModule4",
            "business_card_field_limit": 5,
            "parent_module": {}
        },
        {
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "inventory_template_supported": false,
            "modified_time": "2018-12-04T16:24:44+05:30",
            "plural_label": "Multi-select",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000000269117",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 26,
            "singular_label": "Multi-select",
            "viewable": true,
            "api_supported": true,
            "api_name": "Multi_select",
            "quick_create": true,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "generated_type": "custom",
            "feeds_required": false,
            "scoring_supported": true,
            "webform_supported": true,
            "arguments": [],
            "module_name": "CustomModule1",
            "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": "Google Ads",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000000073001",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 27,
            "singular_label": "Google AdWord",
            "viewable": true,
            "api_supported": false,
            "api_name": "Google_AdWords",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "Google AdWords",
            "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": "3652397000000544019",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 28,
            "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": null,
            "plural_label": "Notes",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000000002197",
            "isBlueprintSupported": false,
            "visible": false,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "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": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "inventory_template_supported": false,
            "modified_time": "2019-07-22T18:28:04+05:30",
            "plural_label": "Custom",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000000924110",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 29,
            "singular_label": "Custom",
            "viewable": true,
            "api_supported": true,
            "api_name": "Custom",
            "quick_create": true,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "generated_type": "custom",
            "feeds_required": false,
            "scoring_supported": true,
            "webform_supported": true,
            "arguments": [],
            "module_name": "CustomModule2",
            "business_card_field_limit": 5,
            "parent_module": {}
        },
        {
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "inventory_template_supported": false,
            "modified_time": "2019-09-23T15:09:36+05:30",
            "plural_label": "custom1",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000000970126",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 30,
            "singular_label": "custom1",
            "viewable": true,
            "api_supported": true,
            "api_name": "custom1",
            "quick_create": true,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "generated_type": "custom",
            "feeds_required": false,
            "scoring_supported": true,
            "webform_supported": true,
            "arguments": [],
            "module_name": "CustomModule3",
            "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": "3652397000000002227",
            "isBlueprintSupported": false,
            "visible": false,
            "visibility": 1,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "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": {}
        },
        {
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "inventory_template_supported": false,
            "modified_time": null,
            "plural_label": "Emails",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000000014163",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": false,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 34,
            "singular_label": "Email",
            "viewable": false,
            "api_supported": false,
            "api_name": "Emails",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "Emails",
            "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": "EmailSentiment",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000000540001",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 2,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 38,
            "singular_label": "EmailSentiment",
            "viewable": false,
            "api_supported": true,
            "api_name": "Email_Sentiment",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "EmailSentiment",
            "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": "Actions Performed",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000000137005",
            "isBlueprintSupported": false,
            "visible": false,
            "visibility": 1,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": false,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 39,
            "singular_label": "Actions Performed",
            "viewable": true,
            "api_supported": true,
            "api_name": "Actions_Performed",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "Actions Performed",
            "business_card_field_limit": 5,
            "parent_module": {}
        },
        {
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": false,
            "inventory_template_supported": false,
            "modified_time": null,
            "plural_label": "Quoted Items",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000001048001",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 2,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": false,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 41,
            "singular_label": "Quoted Items",
            "viewable": true,
            "api_supported": true,
            "api_name": "Quoted_Items",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "subform",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "QuotedItems",
            "business_card_field_limit": 5,
            "parent_module": {
                "api_name": "Quotes",
                "id": "3652397000000002219"
            }
        },
        {
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": false,
            "inventory_template_supported": false,
            "modified_time": null,
            "plural_label": "Ordered Items",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000001048419",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 2,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": false,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 42,
            "singular_label": "Ordered Items",
            "viewable": true,
            "api_supported": true,
            "api_name": "Ordered_Items",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "subform",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "OrderedItems",
            "business_card_field_limit": 5,
            "parent_module": {
                "api_name": "Sales_Orders",
                "id": "3652397000000002221"
            }
        },
        {
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": false,
            "inventory_template_supported": false,
            "modified_time": null,
            "plural_label": "Purchase Items",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000001048837",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 2,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": false,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 43,
            "singular_label": "Purchase Items",
            "viewable": true,
            "api_supported": true,
            "api_name": "Purchase_Items",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "subform",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "PurchaseItems",
            "business_card_field_limit": 5,
            "parent_module": {
                "api_name": "Purchase_Orders",
                "id": "3652397000000002223"
            }
        },
        {
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": false,
            "inventory_template_supported": false,
            "modified_time": null,
            "plural_label": "Invoiced Items",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000001049255",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 2,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": false,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 44,
            "singular_label": "Invoiced Items",
            "viewable": true,
            "api_supported": true,
            "api_name": "Invoiced_Items",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "subform",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "InvoicedItems",
            "business_card_field_limit": 5,
            "parent_module": {
                "api_name": "Invoices",
                "id": "3652397000000002225"
            }
        },
        {
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "inventory_template_supported": false,
            "modified_time": null,
            "plural_label": "Email Analytics",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000001225005",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 2,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 65,
            "singular_label": "Email Analytics",
            "viewable": false,
            "api_supported": true,
            "api_name": "Email_Analytics",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "Email Analytics",
            "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": "ShiftHours",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000001896032",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 14334,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 65,
            "singular_label": "ShiftHour",
            "viewable": false,
            "api_supported": false,
            "api_name": "ShiftHours",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "ShiftHours",
            "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": "Email Template Analytics",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000001225073",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 2,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 65,
            "singular_label": "Email Template Analytics",
            "viewable": false,
            "api_supported": true,
            "api_name": "Email_Template_Analytics",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "Email Template Analytics",
            "business_card_field_limit": 5,
            "parent_module": {}
        },
        {
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "inventory_template_supported": false,
            "modified_time": "2021-03-03T20:47:53+05:30",
            "plural_label": "Listings",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000001971007",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 66,
            "singular_label": "Listings",
            "viewable": true,
            "api_supported": true,
            "api_name": "Listings",
            "quick_create": true,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "generated_type": "custom",
            "feeds_required": false,
            "scoring_supported": true,
            "webform_supported": true,
            "arguments": [],
            "module_name": "CustomModule5",
            "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-02T17:53:08+05:30",
            "plural_label": "Leads vs Listings",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000001978044",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 67,
            "singular_label": "Leads vs Listings",
            "viewable": true,
            "api_supported": true,
            "api_name": "Leads_vs_Listings",
            "quick_create": true,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "generated_type": "linking",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "LinkingModule3",
            "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-02T17:52:05+05:30",
            "plural_label": "Courses",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000001981008",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 68,
            "singular_label": "Course",
            "viewable": true,
            "api_supported": true,
            "api_name": "Courses",
            "quick_create": true,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "generated_type": "custom",
            "feeds_required": false,
            "scoring_supported": true,
            "webform_supported": true,
            "arguments": [],
            "module_name": "CustomModule6",
            "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-29T12:28:27+05:30",
            "plural_label": "Students",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000001983072",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 69,
            "singular_label": "Student",
            "viewable": true,
            "api_supported": true,
            "api_name": "Students",
            "quick_create": true,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "generated_type": "custom",
            "feeds_required": false,
            "scoring_supported": true,
            "webform_supported": true,
            "arguments": [],
            "module_name": "CustomModule7",
            "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-02T17:52:05+05:30",
            "plural_label": "Registrations",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000001985014",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 70,
            "singular_label": "Registrations",
            "viewable": true,
            "api_supported": true,
            "api_name": "Registrations",
            "quick_create": true,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "generated_type": "linking",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "LinkingModule4",
            "business_card_field_limit": 5,
            "parent_module": {}
        },
        {
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "inventory_template_supported": false,
            "modified_time": "2020-05-20T14:59:51+05:30",
            "plural_label": "Leads vs Accounts",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000002279005",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 71,
            "singular_label": "Leads vs Accounts",
            "viewable": true,
            "api_supported": true,
            "api_name": "Leads_vs_Accounts",
            "quick_create": true,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "generated_type": "linking",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "LinkingModule6",
            "business_card_field_limit": 5,
            "parent_module": {}
        },
        {
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "inventory_template_supported": false,
            "modified_time": "2020-05-21T12:28:27+05:30",
            "plural_label": "Contacts X Users",
            "presence_sub_menu": false,
            "triggers_supported": true,
            "id": "3652397000002294006",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 2,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 72,
            "singular_label": "Contacts X Users",
            "viewable": true,
            "api_supported": true,
            "api_name": "Contacts_X_Users",
            "quick_create": true,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "generated_type": "linking",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "LinkingModule7",
            "business_card_field_limit": 5,
            "parent_module": {}
        },
        {
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "inventory_template_supported": false,
            "modified_time": "2020-10-29T12:19:35+05:30",
            "plural_label": "deals/products",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000002899025",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 73,
            "singular_label": "deals/products",
            "viewable": true,
            "api_supported": true,
            "api_name": "deals_products",
            "quick_create": true,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "generated_type": "linking",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "LinkingModule9",
            "business_card_field_limit": 5,
            "parent_module": {}
        },
        {
            "global_search_supported": true,
            "deletable": false,
            "description": null,
            "creatable": false,
            "inventory_template_supported": false,
            "modified_time": "2020-10-29T12:33:36+05:30",
            "track_current_data": true,
            "plural_label": "Lead Status History",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000002906002",
            "isBlueprintSupported": false,
            "visible": false,
            "visibility": 2,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 74,
            "singular_label": "Lead Status History",
            "viewable": true,
            "api_supported": true,
            "api_name": "Lead_Status_History",
            "quick_create": false,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "generated_type": "field_tracker",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "LinkingModule11",
            "business_card_field_limit": 5,
            "parent_module": {
                "api_name": "Leads",
                "id": "3652397000000002175"
            }
        },
        {
            "global_search_supported": false,
            "deletable": true,
            "description": null,
            "creatable": true,
            "inventory_template_supported": false,
            "modified_time": "2021-02-12T12:49:26+05:30",
            "plural_label": "Consents",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000003839007",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 2,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 76,
            "singular_label": "Consent",
            "viewable": true,
            "api_supported": true,
            "api_name": "Consents",
            "quick_create": false,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "generated_type": "default",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "Consents",
            "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": "Data Subject Requests",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000003839456",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 2,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 77,
            "singular_label": "Data Subject Request",
            "viewable": true,
            "api_supported": true,
            "api_name": "Data_Subject_Requests",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "Data_Subject_Requests",
            "business_card_field_limit": 5,
            "parent_module": {}
        },
        {
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "inventory_template_supported": false,
            "modified_time": "2021-02-15T11:54:08+05:30",
            "plural_label": "Leads X Users",
            "presence_sub_menu": false,
            "triggers_supported": true,
            "id": "3652397000003853029",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 8194,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 78,
            "singular_label": "Leads X Users",
            "viewable": true,
            "api_supported": true,
            "api_name": "Leads_X_Users",
            "quick_create": true,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "generated_type": "linking",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "LinkingModule12",
            "business_card_field_limit": 5,
            "parent_module": {}
        },
        {
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "inventory_template_supported": false,
            "modified_time": "2021-03-03T20:47:50+05:30",
            "plural_label": "Deals X Users",
            "presence_sub_menu": false,
            "triggers_supported": true,
            "id": "3652397000004013029",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 8194,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 79,
            "singular_label": "Deals X Users",
            "viewable": true,
            "api_supported": true,
            "api_name": "Deals_X_Users",
            "quick_create": true,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "generated_type": "linking",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "LinkingModule13",
            "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": "Scoring Rules",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000005659013",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 8194,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": false,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 80,
            "singular_label": "Scoring Rule",
            "viewable": false,
            "api_supported": true,
            "api_name": "Scoring_Rules__s",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "Scoring Rules",
            "business_card_field_limit": 5,
            "parent_module": {}
        },
        {
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "inventory_template_supported": false,
            "modified_time": "2021-03-03T20:47:53+05:30",
            "plural_label": "Listings vs Deals",
            "presence_sub_menu": true,
            "triggers_supported": true,
            "id": "3652397000004013541",
            "isBlueprintSupported": true,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": true,
            "emailTemplate_support": true,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": true,
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 80,
            "singular_label": "Listings vs Deals",
            "viewable": true,
            "api_supported": true,
            "api_name": "Listings_vs_Deals",
            "quick_create": true,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "generated_type": "linking",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "LinkingModule14",
            "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": "Entity Scores",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000005659021",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 1,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": false,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 81,
            "singular_label": "Entity Score",
            "viewable": false,
            "api_supported": true,
            "api_name": "Entity_Scores__s",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "Entity Scores",
            "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": "Relationships",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000005787303",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 6142,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": false,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 81,
            "singular_label": "Relationship",
            "viewable": true,
            "api_supported": false,
            "api_name": "Cross_Sellings__s",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "Cross_Selling",
            "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": "Bundles",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000005787305",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 6142,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": false,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 82,
            "singular_label": "Bundle",
            "viewable": true,
            "api_supported": false,
            "api_name": "Bunches__s",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "Bunch",
            "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": "First times",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000005787307",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 6142,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": false,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 83,
            "singular_label": "First time",
            "viewable": true,
            "api_supported": false,
            "api_name": "First_Buys__s",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "First_Buy",
            "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": "Repeats",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000005787309",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 6142,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": false,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 84,
            "singular_label": "Repeat",
            "viewable": true,
            "api_supported": false,
            "api_name": "Rebuys__s",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "Rebuy",
            "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": "Sequences",
            "presence_sub_menu": false,
            "triggers_supported": false,
            "id": "3652397000005787311",
            "isBlueprintSupported": false,
            "visible": true,
            "visibility": 6142,
            "convertable": false,
            "editable": false,
            "emailTemplate_support": false,
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "3652397000000026011"
                },
                {
                    "name": "Standard",
                    "id": "3652397000000026014"
                },
                {
                    "name": "Free",
                    "id": "3652397000001614008"
                },
                {
                    "name": "admin clone",
                    "id": "3652397000005787196"
                }
            ],
            "filter_supported": false,
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 85,
            "singular_label": "Sequence",
            "viewable": true,
            "api_supported": false,
            "api_name": "Next_Buys__s",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "scoring_supported": false,
            "webform_supported": false,
            "arguments": [],
            "module_name": "Next_Buy",
            "business_card_field_limit": 5,
            "parent_module": {}
        }
    ]
}