Zoho Recruit

metadata.modules.get

Retrieves complete metadata for a specific Recruit module identified by its API name. Returns comprehensive configuration including fields, layouts, profiles, related lists, custom views, and module capabilities.

Remote zoho/recruit

Remote (network-hosted)

Other tools also called metadata.modules.get? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "moduleIdentifier": {
      "oneOf": [
        {
          "type": "string",
          "format": "int64",
          "description": "Unique numeric identifier. Numeric string representation of a 64-bit positive integer."
        },
        {
          "type": "string",
          "pattern": "^[A-Za-z][A-Za-z0-9_]*[A-Za-z0-9]$",
          "maxLength": 50,
          "description": "API name of the module to retrieve. Case-sensitive identifier following specific naming rules: must start with a letter, contain only alphanumeric characters and underscores, cannot have consecutive underscores, and must end with alphanumeric character."
        }
      ],
      "description": "Identifier for the module to retrieve, either numeric ID or API name. Use numeric ID for precise identification or API name for human-readable reference. Case-sensitive when using API name."
    }
  }
}