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
Note
- 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 list. 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.
 - New modules are added when a new file upload / image upload fields are added to a module.
 
Parameters
- status
The status parameter can be used to retrieve specific types of modules. Valid values for status are user_hidden,system_hidden,scheduled_for_deletion,visible. eg:status=user_hidden,system_hidden can be used to retrieve all modules that are hidden to user and system. Status parameter is not mandatory. 
Sample Request
Copiedcurl "https://www.zohoapis.com/crm/v6/settings/modules"
-X GET
-H "Authorization: Zoho-oauthtoken 1000.03xxxxxxxxxxxxxxxxxa5317.dxxxxxxxxxxxxxxxxxfa"Copiedresponse = invokeurl
[
	url: "https://www.zohoapis.com/crm/v6/settings/modules"
	type: GET
	connection:"crm_oauth_connection"
];
info response;Response JSON Keys
- deletableboolean
Describes if the user can delete a record in the current module.
Possible values- true: The user can delete a record in the current module.
false: The user cannot delete a record in the current module. - descriptionstring
Represents the description of the module, if any.
 - creatableboolean
Represents if the user can create records in the current module.
Possible values- true: The user can create records in the current module.
false: The user cannot create records in the current module. - modified_timedate and time in ISO8601 format
Represents the date and time of when the module properties were last modified.
 - plural_labelstring
Represents the plural of the module name. Example: Leads.
 - singular_labelstring
Represents the singular of the module name. Example: Lead.
 - presence_sub_menuboolean
Represents if the module has a submenu. For instance, Tasks in Activities is a submenu.
Possible values- true: The current module has a submenu.
false: The current module does not have a submenu. - lookupableboolean
Specifies if the module can be used as a lookup field in other modules.
 - idstring
Represents the unique ID of the module. For instance, 4150868000000002173
 - visibleboolean
Represents if the module is visible to the current user's profile.
 - visibilityinteger
Represents 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.
 
 - convertableboolean
Describes if the user can convert the record into another type of record. For example: Convert Leads into Deals.
Possible values- true: The user can convert the records in the current module into another type of record.
false: The user cannot convert the records in the current module into another type of record. - viewableboolean
Represents if the user can view the records in the current module.
Possible values- true: The user can view the records in the current module.
false: The user cannot view the records in the current module. - editableboolean
Describes if the user can edit a record in the current module.
Possible values- true: The user can edit a record in the current module.
false: The user cannot edit a record in the current module. - api_supportedboolean
Describes if the current module is accessible via API.
Possible values- true: The current module is accessible via API. For instance, Leads, Quotes.
false: The current module is not accessible via API. For instance, Feeds, Documents, and so on. - profilesJSON array
Each object in the array represents the details of the profile that has access to the module. Example: {
"name": "Administrator",
"id": "4150868000000026011"
}, - show_as_tabboolean
Represents 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_linkstring
Represents the web link of the module, if any. For instance, https://extensions.zoho.com/plugin/facebook
 - sequence_numberinteger
Represents the position of the module in the CRM.
 - api_namestring
Represents the API name of the module. Example: Leads.
 - quick_createboolean
Represents if the module supports quick create.
Possible values- true: The user can add records using quick create in the current module. For instance, Contacts, Accounts, and so on.
false: The user cannot add records using quick create in the current module. For instance, Feeds, Forecasts, and so on. - modified_byJSON object
Represents the name and ID of the user who last modified the module properties. For example: "modified_by": {
"name": "Patricia Boyle",
"id": "4150868000000225013"
} - generated_typestring
Represents how the module was created.
Possible values- default: It is a default module. For instance, Contacts, Accounts, and so on.
linking: It is a linking module.
subform: It is a line item subform in one of the inventory modules or it is a custom subform.
static_subform: It is a static subform.
web: It is a web-tab widget.
custom: It is a custom module. - feeds_requiredboolean
Represents if feeds is enabled for the module.
Possible values- true: Feeds is enabled for the current module.
false: Feeds is not enabled for the current module. - argumentsJSON array
Represents the parameters for the link used in Web-tab. Each object represents display name and the value of the argument. Example: "arguments": [
{
"name": "sample",
"value": "users.city"
}
] - module_namestring
Represents the display name of the module.
 - business_card_field_limitinteger
Represents the number of fields you can have in the business card details.
Note: Business card details are displayed on the "Details View" page of a record. This is also the information shown when you hover over a lookup field. - custom_viewJSON object
Represents 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 object
Represents the details of the parent module, if any. For instance, Activities is the parent module for Tasks, Calls, and Events.
 - statusboolean
Represents if the module is user_hidden,system_hidden,scheduled_for_deletion or visible .
 - sub_menu_availableboolean
Represents if sub menu option is available for the module or not.
 
Possible Errors
- INVALID_URL_PATTERNHTTP 404
Please check if the URL trying to access is a correct one
Resolution: The request URL specified is incorrect. Specify a valid request URL. Refer to request URL section above. - OAUTH_SCOPE_MISMATCHHTTP 401
Unauthorized
Resolution: Client does not have ZohoCRM.settings.modules.READ scope. Create a new client with valid scope. Refer to scope section above. - NO_PERMISSIONHTTP 403
Permission denied to read
Resolution: The user does not have permission to read records. Contact your system administrator. - INTERNAL_ERRORHTTP 500
Internal Server Error
Resolution: Unexpected and unhandled exception in the server. Contact support team. - INVALID_REQUEST_METHODHTTP 400
The http request method type is not a valid one
Resolution: You have specified an invalid HTTP method to access the API URL. Specify a valid request method. Refer to endpoints section above. - AUTHORIZATION_FAILEDHTTP 400
User does not have sufficient privilege to read module details.
Resolution: The user does not have the permission to retrieve module details. Contact your system administrator. 
Sample Response
Copied{
    "modules": [
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "Home",
            "presence_sub_menu": false,
            "actual_plural_label": "Home",
            "lookupable": false,
            "id": "6660682000000002173",
            "isBlueprintSupported": false,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "Home",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Home",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "recycle_bin_on_delete": true,
            "modified_time": "2025-04-29T16:33:57+05:30",
            "plural_label": "Leads",
            "presence_sub_menu": true,
            "actual_plural_label": "Leads",
            "lookupable": true,
            "id": "6660682000000002175",
            "isBlueprintSupported": true,
            "visibility": 1,
            "convertable": true,
            "sub_menu_available": true,
            "editable": true,
            "actual_singular_label": "Lead",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "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": "6660682000000501001"
            },
            "generated_type": "default",
            "feeds_required": false,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Leads",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "recycle_bin_on_delete": true,
            "modified_time": "2025-04-29T11:23:55+05:30",
            "plural_label": "Contacts",
            "presence_sub_menu": true,
            "actual_plural_label": "Contacts",
            "lookupable": true,
            "id": "6660682000000002179",
            "isBlueprintSupported": true,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": true,
            "editable": true,
            "actual_singular_label": "Contact",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "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": "6660682000000501001"
            },
            "generated_type": "default",
            "feeds_required": false,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Contacts",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "recycle_bin_on_delete": true,
            "modified_time": "2025-04-28T12:18:40+05:30",
            "plural_label": "Accounts",
            "presence_sub_menu": true,
            "actual_plural_label": "Accounts",
            "lookupable": true,
            "id": "6660682000000002177",
            "isBlueprintSupported": true,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": true,
            "editable": true,
            "actual_singular_label": "Account",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "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": "6660682000000501001"
            },
            "generated_type": "default",
            "feeds_required": false,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Accounts",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "recycle_bin_on_delete": true,
            "modified_time": "2025-04-28T12:09:37+05:30",
            "plural_label": "Deals",
            "presence_sub_menu": true,
            "actual_plural_label": "Deals",
            "lookupable": true,
            "id": "6660682000000002181",
            "isBlueprintSupported": true,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": true,
            "editable": true,
            "actual_singular_label": "Deal",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "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": "6660682000000501001"
            },
            "generated_type": "default",
            "feeds_required": true,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Deals",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "recycle_bin_on_delete": true,
            "modified_time": "2025-04-28T12:18:03+05:30",
            "plural_label": "Tasks",
            "presence_sub_menu": true,
            "actual_plural_label": "Tasks",
            "lookupable": false,
            "id": "6660682000000002193",
            "isBlueprintSupported": true,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": true,
            "editable": true,
            "actual_singular_label": "Task",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "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": {
                "name": "Patricia Boyle",
                "id": "6660682000000501001"
            },
            "generated_type": "default",
            "feeds_required": false,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Tasks",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "recycle_bin_on_delete": true,
            "modified_time": null,
            "plural_label": "Meetings",
            "presence_sub_menu": true,
            "actual_plural_label": "Meetings",
            "lookupable": false,
            "id": "6660682000000002195",
            "isBlueprintSupported": true,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": true,
            "editable": true,
            "actual_singular_label": "Meeting",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Meetings",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "recycle_bin_on_delete": true,
            "modified_time": null,
            "plural_label": "Calls",
            "presence_sub_menu": true,
            "actual_plural_label": "Calls",
            "lookupable": false,
            "id": "6660682000000033015",
            "isBlueprintSupported": false,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": true,
            "editable": true,
            "actual_singular_label": "Call",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Calls",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "Reports",
            "presence_sub_menu": false,
            "actual_plural_label": "Reports",
            "lookupable": false,
            "id": "6660682000000002185",
            "isBlueprintSupported": false,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "Report",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Reports",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "Analytics",
            "presence_sub_menu": false,
            "actual_plural_label": "Analytics",
            "lookupable": false,
            "id": "6660682000000002187",
            "isBlueprintSupported": false,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "Analytics",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 8,
            "singular_label": "Analytics",
            "viewable": true,
            "api_supported": false,
            "api_name": "Analytics",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Dashboards",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "recycle_bin_on_delete": true,
            "modified_time": null,
            "plural_label": "Products",
            "presence_sub_menu": true,
            "actual_plural_label": "Products",
            "lookupable": true,
            "id": "6660682000000002213",
            "isBlueprintSupported": true,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": true,
            "editable": true,
            "actual_singular_label": "Product",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "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": null,
            "generated_type": "default",
            "feeds_required": false,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Products",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "recycle_bin_on_delete": true,
            "modified_time": null,
            "plural_label": "Quotes",
            "presence_sub_menu": true,
            "actual_plural_label": "Quotes",
            "lookupable": true,
            "id": "6660682000000002219",
            "isBlueprintSupported": true,
            "visibility": 1,
            "convertable": true,
            "sub_menu_available": true,
            "editable": true,
            "actual_singular_label": "Quote",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Quotes",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "recycle_bin_on_delete": true,
            "modified_time": null,
            "plural_label": "Sales Orders",
            "presence_sub_menu": true,
            "actual_plural_label": "Sales Orders",
            "lookupable": true,
            "id": "6660682000000002221",
            "isBlueprintSupported": true,
            "visibility": 1,
            "convertable": true,
            "sub_menu_available": true,
            "editable": true,
            "actual_singular_label": "Sales Order",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "SalesOrders",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "recycle_bin_on_delete": true,
            "modified_time": null,
            "plural_label": "Purchase Orders",
            "presence_sub_menu": true,
            "actual_plural_label": "Purchase Orders",
            "lookupable": true,
            "id": "6660682000000002223",
            "isBlueprintSupported": true,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": true,
            "editable": true,
            "actual_singular_label": "Purchase Order",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "PurchaseOrders",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "recycle_bin_on_delete": true,
            "modified_time": null,
            "plural_label": "Invoices",
            "presence_sub_menu": true,
            "actual_plural_label": "Invoices",
            "lookupable": true,
            "id": "6660682000000002225",
            "isBlueprintSupported": true,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": true,
            "editable": true,
            "actual_singular_label": "Invoice",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Invoices",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "SalesInbox",
            "presence_sub_menu": false,
            "actual_plural_label": "SalesInbox",
            "lookupable": false,
            "id": "6660682000000118001",
            "isBlueprintSupported": false,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "SalesInbox",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "SalesInbox",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "Feeds",
            "presence_sub_menu": false,
            "actual_plural_label": "Feeds",
            "lookupable": false,
            "id": "6660682000000071001",
            "isBlueprintSupported": false,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "Feeds",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Feeds",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "user_hidden"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "recycle_bin_on_delete": true,
            "modified_time": null,
            "plural_label": "Campaigns",
            "presence_sub_menu": true,
            "actual_plural_label": "Campaigns",
            "lookupable": true,
            "id": "6660682000000002183",
            "isBlueprintSupported": true,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": true,
            "editable": true,
            "actual_singular_label": "Campaign",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "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": null,
            "generated_type": "default",
            "feeds_required": false,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Campaigns",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "recycle_bin_on_delete": true,
            "modified_time": null,
            "plural_label": "Vendors",
            "presence_sub_menu": true,
            "actual_plural_label": "Vendors",
            "lookupable": true,
            "id": "6660682000000002215",
            "isBlueprintSupported": true,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": true,
            "editable": true,
            "actual_singular_label": "Vendor",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Vendors",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "recycle_bin_on_delete": true,
            "modified_time": null,
            "plural_label": "Price Books",
            "presence_sub_menu": true,
            "actual_plural_label": "Price Books",
            "lookupable": true,
            "id": "6660682000000002217",
            "isBlueprintSupported": true,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": true,
            "editable": true,
            "actual_singular_label": "Price Book",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "PriceBooks",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "recycle_bin_on_delete": true,
            "modified_time": null,
            "plural_label": "Cases",
            "presence_sub_menu": true,
            "actual_plural_label": "Cases",
            "lookupable": true,
            "id": "6660682000000002209",
            "isBlueprintSupported": true,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": true,
            "editable": true,
            "actual_singular_label": "Case",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Cases",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "recycle_bin_on_delete": true,
            "modified_time": null,
            "plural_label": "Solutions",
            "presence_sub_menu": true,
            "actual_plural_label": "Solutions",
            "lookupable": true,
            "id": "6660682000000002211",
            "isBlueprintSupported": true,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": true,
            "editable": true,
            "actual_singular_label": "Solution",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Solutions",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "Documents",
            "presence_sub_menu": false,
            "actual_plural_label": "Documents",
            "lookupable": false,
            "id": "6660682000000056001",
            "isBlueprintSupported": false,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "Documents",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Documents",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "Forecasts",
            "presence_sub_menu": true,
            "actual_plural_label": "Forecasts",
            "lookupable": false,
            "id": "6660682000000002201",
            "isBlueprintSupported": false,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": true,
            "editable": false,
            "actual_singular_label": "Forecast",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 22,
            "singular_label": "Forecast",
            "viewable": true,
            "api_supported": false,
            "api_name": "Forecasts",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Forecasts",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "Visits",
            "presence_sub_menu": false,
            "actual_plural_label": "Visits",
            "lookupable": false,
            "id": "6660682000000077007",
            "isBlueprintSupported": false,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "Visit",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                }
            ],
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Visits",
            "profile_count": 1,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": true,
            "description": null,
            "creatable": true,
            "recycle_bin_on_delete": true,
            "modified_time": null,
            "plural_label": "Quoted Items",
            "presence_sub_menu": false,
            "actual_plural_label": "Quoted Items",
            "lookupable": false,
            "id": "6660682000000233001",
            "isBlueprintSupported": false,
            "visibility": 2,
            "convertable": false,
            "sub_menu_available": false,
            "editable": true,
            "actual_singular_label": "Quoted Items",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 23,
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "QuotedItems",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {
                "api_name": "Quotes",
                "id": "6660682000000002219"
            },
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "Social",
            "presence_sub_menu": false,
            "actual_plural_label": "Social",
            "lookupable": false,
            "id": "6660682000000065001",
            "isBlueprintSupported": false,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "Social",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                }
            ],
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Social",
            "profile_count": 1,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "track_current_data": true,
            "plural_label": "Stage History",
            "presence_sub_menu": false,
            "actual_plural_label": "Stage History",
            "lookupable": false,
            "id": "6660682000000174001",
            "isBlueprintSupported": false,
            "visibility": 2,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "Stage History",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "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": null,
            "generated_type": "field_tracker",
            "feeds_required": false,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "DealHistory",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {
                "api_name": "Deals",
                "id": "6660682000000002181"
            },
            "status": "system_hidden"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "EmailSentiment",
            "presence_sub_menu": false,
            "actual_plural_label": "EmailSentiment",
            "lookupable": false,
            "id": "6660682000000197001",
            "isBlueprintSupported": false,
            "visibility": 2,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "EmailSentiment",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 24,
            "singular_label": "EmailSentiment",
            "viewable": false,
            "api_supported": true,
            "api_name": "Email_Sentiment",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "EmailSentiment",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": true,
            "description": null,
            "creatable": true,
            "recycle_bin_on_delete": true,
            "modified_time": null,
            "plural_label": "Ordered Items",
            "presence_sub_menu": false,
            "actual_plural_label": "Ordered Items",
            "lookupable": false,
            "id": "6660682000000233419",
            "isBlueprintSupported": false,
            "visibility": 2,
            "convertable": false,
            "sub_menu_available": false,
            "editable": true,
            "actual_singular_label": "Ordered Items",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 24,
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "OrderedItems",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {
                "api_name": "Sales_Orders",
                "id": "6660682000000002221"
            },
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "Email Analytics",
            "presence_sub_menu": false,
            "actual_plural_label": "Email Analytics",
            "lookupable": false,
            "id": "6660682000000246017",
            "isBlueprintSupported": false,
            "visibility": 2,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "Email Analytics",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 24,
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Email Analytics",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "Email Template Analytics",
            "presence_sub_menu": false,
            "actual_plural_label": "Email Template Analytics",
            "lookupable": false,
            "id": "6660682000000246114",
            "isBlueprintSupported": false,
            "visibility": 2,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "Email Template Analytics",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 24,
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Email Template Analytics",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": true,
            "description": null,
            "creatable": true,
            "recycle_bin_on_delete": true,
            "modified_time": null,
            "plural_label": "Purchase Items",
            "presence_sub_menu": false,
            "actual_plural_label": "Purchase Items",
            "lookupable": false,
            "id": "6660682000000233837",
            "isBlueprintSupported": false,
            "visibility": 2,
            "convertable": false,
            "sub_menu_available": false,
            "editable": true,
            "actual_singular_label": "Purchase Items",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 25,
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "PurchaseItems",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {
                "api_name": "Purchase_Orders",
                "id": "6660682000000002223"
            },
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "recycle_bin_on_delete": true,
            "modified_time": "2025-04-29T16:34:17+05:30",
            "plural_label": "KYC",
            "presence_sub_menu": false,
            "actual_plural_label": "KYC",
            "lookupable": false,
            "id": "6660682000000848011",
            "isBlueprintSupported": false,
            "visibility": 2,
            "convertable": false,
            "sub_menu_available": false,
            "editable": true,
            "static_subform_properties": {
                "fields": [
                    {
                        "api_name": "ID_Type",
                        "id": "6660682000000848765"
                    },
                    {
                        "api_name": "Requirement",
                        "id": "6660682000000848792"
                    }
                ]
            },
            "actual_singular_label": "KYC",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 25,
            "singular_label": "KYC",
            "viewable": true,
            "api_supported": true,
            "api_name": "KYC",
            "quick_create": false,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "6660682000000501001"
            },
            "generated_type": "static_subform",
            "feeds_required": false,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "LinkingModule1",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {
                "api_name": "Leads",
                "id": "6660682000000002175"
            },
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "recycle_bin_on_delete": true,
            "modified_time": "2025-04-28T11:57:45+05:30",
            "plural_label": "ID details",
            "presence_sub_menu": false,
            "actual_plural_label": "ID details",
            "lookupable": false,
            "id": "6660682000000920099",
            "isBlueprintSupported": false,
            "visibility": 2,
            "convertable": false,
            "sub_menu_available": false,
            "editable": true,
            "static_subform_properties": {
                "fields": [
                    {
                        "api_name": "ID_Card_Type",
                        "id": "6660682000000920803"
                    }
                ]
            },
            "actual_singular_label": "ID details",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 25,
            "singular_label": "ID details",
            "viewable": true,
            "api_supported": true,
            "api_name": "ID_details",
            "quick_create": false,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "6660682000000501001"
            },
            "generated_type": "static_subform",
            "feeds_required": false,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "LinkingModule4",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {
                "api_name": "Contacts",
                "id": "6660682000000002179"
            },
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "recycle_bin_on_delete": true,
            "modified_time": "2025-04-28T12:10:16+05:30",
            "plural_label": "Subform 1",
            "presence_sub_menu": false,
            "actual_plural_label": "Subform 1",
            "lookupable": false,
            "id": "6660682000000920964",
            "isBlueprintSupported": false,
            "visibility": 2,
            "convertable": false,
            "sub_menu_available": false,
            "editable": true,
            "actual_singular_label": "Subform 1",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 25,
            "singular_label": "Subform 1",
            "viewable": true,
            "api_supported": true,
            "api_name": "Subform_11",
            "quick_create": false,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "6660682000000501001"
            },
            "generated_type": "subform",
            "feeds_required": false,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "LinkingModule5",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {
                "api_name": "Accounts",
                "id": "6660682000000002177"
            },
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": true,
            "description": null,
            "creatable": true,
            "recycle_bin_on_delete": true,
            "modified_time": null,
            "plural_label": "Invoiced Items",
            "presence_sub_menu": false,
            "actual_plural_label": "Invoiced Items",
            "lookupable": false,
            "id": "6660682000000234255",
            "isBlueprintSupported": false,
            "visibility": 2,
            "convertable": false,
            "sub_menu_available": false,
            "editable": true,
            "actual_singular_label": "Invoiced Items",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 26,
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "InvoicedItems",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {
                "api_name": "Invoices",
                "id": "6660682000000002225"
            },
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "recycle_bin_on_delete": true,
            "modified_time": null,
            "plural_label": "Notes",
            "presence_sub_menu": false,
            "actual_plural_label": "Notes",
            "lookupable": false,
            "id": "6660682000000002197",
            "isBlueprintSupported": false,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": false,
            "editable": true,
            "actual_singular_label": "Note",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Notes",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "system_hidden"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": true,
            "description": null,
            "creatable": true,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "Attachments",
            "presence_sub_menu": false,
            "actual_plural_label": "Attachments",
            "lookupable": false,
            "id": "6660682000000002227",
            "isBlueprintSupported": false,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "Attachment",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Attachments",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "system_hidden"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "Emails",
            "presence_sub_menu": false,
            "actual_plural_label": "Emails",
            "lookupable": false,
            "id": "6660682000000014163",
            "isBlueprintSupported": false,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "Email",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "show_as_tab": true,
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Emails",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "Google Ads",
            "presence_sub_menu": false,
            "actual_plural_label": "Google AdWords",
            "lookupable": false,
            "id": "6660682000000073001",
            "isBlueprintSupported": false,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "Google AdWord",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                }
            ],
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 37,
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Google AdWords",
            "profile_count": 1,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "Actions Performed",
            "presence_sub_menu": false,
            "actual_plural_label": "Actions Performed",
            "lookupable": false,
            "id": "6660682000000137005",
            "isBlueprintSupported": false,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "Actions Performed",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Actions Performed",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "system_hidden"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "ShiftHours",
            "presence_sub_menu": false,
            "actual_plural_label": "ShiftHours",
            "lookupable": false,
            "id": "6660682000000284011",
            "isBlueprintSupported": false,
            "visibility": 14334,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "ShiftHour",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 56,
            "singular_label": "ShiftHour",
            "viewable": false,
            "api_supported": false,
            "api_name": "ShiftHours",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "ShiftHours",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "Forecast Targets",
            "presence_sub_menu": false,
            "actual_plural_label": "Forecast Targets",
            "lookupable": false,
            "id": "6660682000000308015",
            "isBlueprintSupported": false,
            "visibility": 736,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "Forecast Target",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 57,
            "singular_label": "Forecast Target",
            "viewable": false,
            "api_supported": false,
            "api_name": "Forecast_Quotas",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Forecast Quotas",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "system_hidden"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "Forecast Items",
            "presence_sub_menu": false,
            "actual_plural_label": "Forecast Items",
            "lookupable": false,
            "id": "6660682000000308017",
            "isBlueprintSupported": false,
            "visibility": 736,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "Forecast Item",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 57,
            "singular_label": "Forecast Item",
            "viewable": false,
            "api_supported": false,
            "api_name": "Forecast_Items",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Forecast Items",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "system_hidden"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "Forecast Groups",
            "presence_sub_menu": false,
            "actual_plural_label": "Forecast Groups",
            "lookupable": false,
            "id": "6660682000000308025",
            "isBlueprintSupported": false,
            "visibility": 2044,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "Forecast Group",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 57,
            "singular_label": "Forecast Group",
            "viewable": false,
            "api_supported": false,
            "api_name": "Forecast_Groups",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Forecast Groups",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "system_hidden"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "Locking Information",
            "presence_sub_menu": false,
            "actual_plural_label": "Locking Information",
            "lookupable": false,
            "id": "6660682000000375001",
            "isBlueprintSupported": false,
            "visibility": 2,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "Locking Information",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 70,
            "singular_label": "Locking Information",
            "viewable": false,
            "api_supported": true,
            "api_name": "Locking_Information__s",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "LockingInformation",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "Email Templates",
            "presence_sub_menu": false,
            "actual_plural_label": "Email Templates",
            "lookupable": false,
            "id": "6660682000000498045",
            "isBlueprintSupported": false,
            "visibility": 2,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "Email Template",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 108,
            "singular_label": "Email Template",
            "viewable": false,
            "api_supported": false,
            "api_name": "Email_Template__s",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "EmailTemplate",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "Approval Process Configs",
            "presence_sub_menu": false,
            "actual_plural_label": "Approval Process Configs",
            "lookupable": false,
            "id": "6660682000000509150",
            "isBlueprintSupported": false,
            "visibility": 66,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "Approval Process Config",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 112,
            "singular_label": "Approval Process Config",
            "viewable": true,
            "api_supported": true,
            "api_name": "Approval_Process_Conf__s",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "ApprovalProcessConfigs",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "Approval Logs",
            "presence_sub_menu": false,
            "actual_plural_label": "Approval Logs",
            "lookupable": false,
            "id": "6660682000000509152",
            "isBlueprintSupported": false,
            "visibility": 66,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "Approval Log",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 113,
            "singular_label": "Approval Log",
            "viewable": true,
            "api_supported": true,
            "api_name": "Approval_Logs__s",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "ApprovalLogs",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "Approval Action Logs",
            "presence_sub_menu": false,
            "actual_plural_label": "Approval Action Logs",
            "lookupable": false,
            "id": "6660682000000509154",
            "isBlueprintSupported": false,
            "visibility": 66,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "Approval Action Log",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 114,
            "singular_label": "Approval Action Log",
            "viewable": true,
            "api_supported": true,
            "api_name": "Approval_Action_Logs__s",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "ApprovalActionLogs",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "My Jobs",
            "presence_sub_menu": false,
            "actual_plural_label": "My Jobs",
            "lookupable": false,
            "id": "6660682000000528055",
            "isBlueprintSupported": false,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "My Jobs",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 115,
            "singular_label": "My Jobs",
            "viewable": true,
            "api_supported": true,
            "api_name": "Approvals",
            "quick_create": false,
            "modified_by": null,
            "generated_type": "default",
            "feeds_required": false,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Approvals",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": true,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": "2025-04-16T19:39:57+05:30",
            "plural_label": "File Upload",
            "presence_sub_menu": false,
            "actual_plural_label": "File Upload",
            "lookupable": false,
            "id": "6660682000000848742",
            "isBlueprintSupported": false,
            "visibility": 2046,
            "convertable": false,
            "sub_menu_available": true,
            "editable": false,
            "actual_singular_label": "File Upload",
            "profiles": [],
            "show_as_tab": true,
            "web_link": null,
            "sequence_number": 117,
            "singular_label": "File Upload",
            "viewable": false,
            "api_supported": false,
            "api_name": "File_Upload_1__s",
            "quick_create": false,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "6660682000000501001"
            },
            "generated_type": "default",
            "feeds_required": false,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Fileupload1",
            "profile_count": 0,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "Scoring Rules",
            "presence_sub_menu": false,
            "actual_plural_label": "Scoring Rules",
            "lookupable": false,
            "id": "6660682000000890006",
            "isBlueprintSupported": false,
            "visibility": 8194,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "Scoring Rule",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 117,
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Scoring Rules",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": null,
            "plural_label": "Entity Scores",
            "presence_sub_menu": false,
            "actual_plural_label": "Entity Scores",
            "lookupable": false,
            "id": "6660682000000890014",
            "isBlueprintSupported": false,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "Entity Score",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 118,
            "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,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "Entity Scores",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": false,
            "widget": {
                "name": "Time Widget",
                "id": "6660682000000890076",
                "url": "https://www.worldtimebuddy.com/"
            },
            "deletable": false,
            "description": null,
            "creatable": false,
            "recycle_bin_on_delete": false,
            "modified_time": "2025-04-24T16:06:53+05:30",
            "plural_label": "Time",
            "presence_sub_menu": false,
            "actual_plural_label": "Time",
            "lookupable": false,
            "id": "6660682000000890098",
            "isBlueprintSupported": false,
            "visibility": 1,
            "convertable": false,
            "sub_menu_available": false,
            "editable": false,
            "actual_singular_label": "Time",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                }
            ],
            "show_as_tab": true,
            "web_link": "6660682000000890076",
            "sequence_number": 121,
            "singular_label": "Time",
            "viewable": true,
            "api_supported": false,
            "api_name": "Time",
            "quick_create": false,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "6660682000000501001"
            },
            "generated_type": "webtab_widget",
            "feeds_required": false,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "WebTab1",
            "profile_count": 1,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        },
        {
            "has_more_profiles": false,
            "access_type": "org_based",
            "private_profile": null,
            "global_search_supported": true,
            "deletable": true,
            "description": null,
            "creatable": true,
            "recycle_bin_on_delete": true,
            "modified_time": "2025-04-24T16:59:05+05:30",
            "plural_label": "Accounts X Deals",
            "presence_sub_menu": false,
            "actual_plural_label": "Accounts X Deals",
            "lookupable": false,
            "id": "6660682000000897072",
            "isBlueprintSupported": false,
            "visibility": 2,
            "convertable": false,
            "sub_menu_available": true,
            "editable": true,
            "actual_singular_label": "Accounts X Deals",
            "profiles": [
                {
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "show_as_tab": false,
            "web_link": null,
            "sequence_number": 122,
            "singular_label": "Accounts X Deals",
            "viewable": true,
            "api_supported": true,
            "api_name": "Accounts_X_Deals",
            "quick_create": true,
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "6660682000000501001"
            },
            "generated_type": "linking",
            "feeds_required": false,
            "public_fields_configured": false,
            "arguments": [],
            "module_name": "LinkingModule2",
            "profile_count": 2,
            "business_card_field_limit": 5,
            "parent_module": {},
            "status": "visible"
        }
    ]
}