> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stackone.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Zoho Recruit

> 63 actions available for Zoho Recruit through StackOne. Use via Actions RPC, Toolset SDK, MCP, or A2A.

export const GettingStarted = ({connector}) => {
  const linkStyle = {
    textDecoration: 'none'
  };
  const authConfigGuides = connector?.authentication?.filter(a => a?.setupGuide) ?? [];
  const linkAccountGuides = connector?.authentication?.filter(a => a?.configGuide) ?? [];
  return <div style={{
    marginTop: '32px',
    paddingTop: '24px',
    borderTop: '1px solid #e2e8f0'
  }}>
      <div style={{
    fontSize: '20px',
    fontWeight: '600',
    marginBottom: '12px'
  }}>Getting Started</div>
      <Steps>
        <Step title="Create or Select a Project">
          Set up a new project or select an existing one. See the <a href="/guides/managing-projects" style={linkStyle}>Projects Guide</a>.
        </Step>
        <Step title="Configure the Connector">
          <>
            Enable the connector and set up auth configuration in your project. See <a href="/guides/explore-connectors" style={linkStyle}>Managing Connectors</a>.
            {authConfigGuides.length > 0 && <>
              <Columns cols={2}>
                {authConfigGuides.map(auth => <Card title="Auth Config" href={`/${auth.setupGuide}`} icon={connector.icon} horizontal>
                    {connector.name} - {auth.label}
                  </Card>)}
              </Columns> 
              </>}
          </>
        </Step>
        <Step title="Link an Account">
          <>
            Connect an account using <a href="/guides/embedding-stackone-hub" style={linkStyle}>StackOne Hub</a> or <a href="/guides/auth-link" style={linkStyle}>Auth Link</a>.
            {linkAccountGuides.length > 0 && <>
                <Columns cols={2}>
                  {linkAccountGuides.map(auth => <Card title="Link Account" href={`/${auth.configGuide}`} icon={connector.icon} horizontal>
                      {connector.name} - {auth.label}
                    </Card>)}
                </Columns>
              </>}
          </>
        </Step>
        <Step title="Use Actions">
          <>
            Invoke actions using one of the methods below:
            <ul style={{
    marginTop: '8px',
    paddingLeft: '20px'
  }}>
              <li style={{
    marginBottom: '4px'
  }}><a href="/mcp/quickstart" style={linkStyle}>MCP</a> – Model Context Protocol for AI assistants</li>
              <li style={{
    marginBottom: '4px'
  }}><a href="/a2a/quickstart" style={linkStyle}>A2A</a> – Agent-to-Agent protocol</li>
              <li style={{
    marginBottom: '4px'
  }}><a href="/agents/typescript/introduction" style={linkStyle}>AI Toolset (TypeScript)</a> – TypeScript SDK for AI agents</li>
              <li style={{
    marginBottom: '4px'
  }}><a href="/agents/python/introduction" style={linkStyle}>AI Toolset (Python)</a> – Python SDK for AI agents</li>
              <li style={{
    marginBottom: '4px'
  }}><a href="/platform/api-reference/actions/make-an-rpc-call-to-an-action" style={linkStyle}>Actions RPC</a> – Direct API calls</li>
              <li style={{
    marginBottom: '4px'
  }}><a href="/guides/playground" style={linkStyle}>Playground</a> – Test actions in the dashboard</li>
            </ul>
          </>
        </Step>
      </Steps>
    </div>;
};

export const ActionsLibrary = ({search, setSearch, filtered, sharedStyles = {}, KeyCell, ScopesCell, availableScopes, selectedScopes, setSelectedScopes}) => {
  const libraryStyles = {
    section: {
      marginTop: '24px',
      marginBottom: '16px'
    },
    sectionTitle: {
      fontSize: '18px',
      fontWeight: '600',
      marginBottom: '12px'
    },
    filterRow: {
      display: 'flex',
      gap: '12px',
      marginBottom: '12px',
      alignItems: 'stretch'
    },
    count: {
      color: '#64748b',
      fontSize: '12px',
      marginBottom: '8px'
    },
    scopesFilterRow: {
      marginBottom: '12px'
    },
    scopesDropdown: {
      display: 'inline-block',
      fontSize: '12px',
      color: '#475569'
    },
    scopesSummary: {
      cursor: 'pointer',
      padding: '6px 10px',
      borderRadius: '999px',
      border: '1px solid #e2e8f0',
      backgroundColor: '#ffffff',
      listStyle: 'none',
      display: 'inline-flex',
      alignItems: 'center',
      gap: '6px'
    },
    scopesSummaryLabel: {
      margin: 0,
      padding: 0
    },
    scopesChipsContainer: {
      marginTop: '8px',
      padding: '4px 2px 2px',
      display: 'flex',
      flexWrap: 'wrap',
      gap: '6px',
      maxHeight: '90px',
      overflowY: 'auto'
    },
    scopeChip: {
      borderRadius: '999px',
      border: '1px solid #e2e8f0',
      padding: '4px 8px',
      fontSize: '11px',
      backgroundColor: '#f8fafc',
      color: '#475569',
      cursor: 'pointer'
    },
    scopeChipActive: {
      backgroundColor: '#dbeafe',
      borderColor: '#2563eb',
      color: '#1d4ed8'
    },
    tableContainer: {
      maxHeight: '500px',
      overflowY: 'auto',
      overflowX: 'auto',
      border: '1px solid #e2e8f0',
      borderRadius: '8px',
      fontSize: '13px'
    },
    gridTable: {
      display: 'grid',
      minWidth: '600px',
      gridTemplateColumns: '200px 1fr'
    },
    gridTableWithScopes: {
      gridTemplateColumns: '200px 1fr 150px'
    },
    gridHeader: {
      display: 'contents'
    },
    gridHeaderCell: {
      position: 'sticky',
      top: 0,
      backgroundColor: '#f8fafc',
      padding: '10px 12px',
      fontWeight: '600',
      borderBottom: '1px solid #e2e8f0',
      zIndex: 1
    },
    gridRow: {
      display: 'contents'
    },
    gridCellAction: {
      padding: '10px 12px',
      fontWeight: '500',
      borderBottom: '1px solid #f1f5f9'
    },
    gridCellKey: {
      padding: '10px 12px',
      borderBottom: '1px solid #f1f5f9'
    },
    gridCellScopes: {
      padding: '10px 12px',
      borderBottom: '1px solid #f1f5f9',
      color: '#475569',
      fontSize: '12px'
    },
    gridCellDescription: {
      padding: '10px 12px',
      color: '#64748b',
      borderBottom: '1px solid #f1f5f9'
    }
  };
  const styles = {
    ...libraryStyles,
    ...sharedStyles
  };
  const safeAvailableScopes = Array.isArray(availableScopes) ? availableScopes : [];
  const safeSelectedScopes = Array.isArray(selectedScopes) ? selectedScopes : [];
  const hasScopesColumn = safeAvailableScopes.length > 0;
  const hasScopeFilter = safeAvailableScopes.length > 0 && typeof setSelectedScopes === 'function';
  const ScopesCellComponent = ScopesCell || (() => null);
  return <div style={styles.section}>
      <div style={styles.sectionTitle}>Actions</div>
      <div style={styles.filterRow}>
        <SearchBar value={search} onChange={setSearch} placeholder="Search actions" />
        {hasScopeFilter && <FilterDropdown label="Scopes" items={safeAvailableScopes} selectedItems={safeSelectedScopes} onChange={setSelectedScopes} searchPlaceholder="Search scopes..." emptyLabel="No scopes found" />}
      </div>
      <div style={styles.count}>
        {filtered.length === 0 ? '0 actions found' : `${filtered.length} action${filtered.length !== 1 ? 's' : ''}`}
      </div>
      {}
      <div className="not-prose" style={styles.tableContainer}>
        <div style={{
    ...hasScopesColumn ? {
      ...styles.gridTable,
      ...styles.gridTableWithScopes
    } : styles.gridTable
  }}>
          {}
          <div style={styles.gridHeader}>
            <div style={styles.gridHeaderCell}>Action</div>
            <div style={styles.gridHeaderCell}>Description</div>
            {hasScopesColumn && <div style={styles.gridHeaderCell}>Required scopes</div>}
          </div>
          {}
          {filtered.map(a => <div key={a.id} style={styles.gridRow}>
              <div style={styles.gridCellAction}>
                <div>{a.label}</div>
                <div style={{
    marginTop: '4px'
  }}>
                  <KeyCell id={a.id} />
                </div>
              </div>
              <div style={styles.gridCellDescription}>{a.description}</div>
              {hasScopesColumn && <div style={styles.gridCellScopes}>
                  <ScopesCellComponent scopes={a.requiredScopes} actionId={a.id} />
                </div>}
            </div>)}
        </div>
      </div>
    </div>;
};

export const FilterDropdown = ({label, items, selectedItems, onChange, searchPlaceholder = 'Search...', emptyLabel = 'No items found', formatLabel}) => {
  const [dropdownOpen, setDropdownOpen] = React.useState(false);
  const [search, setSearch] = React.useState('');
  const [hoveredItem, setHoveredItem] = React.useState(null);
  const dropdownRef = React.useRef(null);
  const styles = {
    dropdownContainer: {
      position: 'relative'
    },
    dropdownTrigger: {
      display: 'flex',
      alignItems: 'center',
      gap: '8px',
      padding: '10px 14px',
      borderRadius: '8px',
      border: '1px solid #e2e8f0',
      fontSize: '14px',
      backgroundColor: 'white',
      cursor: 'pointer',
      whiteSpace: 'nowrap',
      minWidth: '160px',
      justifyContent: 'space-between'
    },
    dropdownTriggerActive: {
      borderColor: '#068F56',
      backgroundColor: '#f0fdf4'
    },
    dropdownMenu: {
      position: 'absolute',
      top: '100%',
      right: 0,
      marginTop: '4px',
      backgroundColor: 'white',
      border: '1px solid #e2e8f0',
      borderRadius: '8px',
      boxShadow: '0 4px 12px rgba(0,0,0,0.1)',
      zIndex: 50,
      minWidth: '220px',
      maxHeight: '320px',
      display: 'flex',
      flexDirection: 'column'
    },
    dropdownHeader: {
      padding: '8px 12px',
      borderBottom: '1px solid #e2e8f0'
    },
    selectActions: {
      display: 'flex',
      alignItems: 'center',
      gap: '8px',
      marginTop: '6px',
      fontSize: '12px'
    },
    selectActionBtn: {
      background: 'none',
      border: 'none',
      color: '#64748b',
      cursor: 'pointer',
      padding: '2px 4px',
      fontSize: '12px'
    },
    dropdownSearchInput: {
      width: '100%',
      padding: '8px 10px',
      borderRadius: '6px',
      border: '1px solid #e2e8f0',
      fontSize: '13px',
      outline: 'none',
      backgroundColor: '#ffffff'
    },
    dropdownList: {
      overflowY: 'auto',
      maxHeight: '220px',
      padding: '4px 0'
    },
    dropdownItem: {
      display: 'flex',
      alignItems: 'center',
      gap: '10px',
      padding: '8px 12px',
      cursor: 'pointer',
      fontSize: '13px',
      color: '#374151',
      transition: 'background-color 0.1s'
    },
    dropdownItemHover: {
      backgroundColor: '#f8fafc'
    },
    checkbox: {
      width: '16px',
      height: '16px',
      borderRadius: '4px',
      border: '2px solid #d1d5db',
      display: 'flex',
      alignItems: 'center',
      justifyContent: 'center',
      flexShrink: 0
    },
    checkboxChecked: {
      backgroundColor: '#068F56',
      borderColor: '#068F56'
    },
    checkmark: {
      color: 'white',
      fontSize: '10px',
      fontWeight: 'bold'
    },
    dropdownFooter: {
      padding: '8px 12px',
      borderTop: '1px solid #e2e8f0',
      display: 'flex',
      justifyContent: 'space-between',
      alignItems: 'center'
    },
    clearButton: {
      fontSize: '12px',
      color: '#64748b',
      cursor: 'pointer',
      padding: '4px 8px',
      borderRadius: '4px',
      border: 'none',
      background: 'none'
    },
    badge: {
      backgroundColor: '#068F56',
      color: 'white',
      fontSize: '11px',
      fontWeight: '600',
      padding: '2px 6px',
      borderRadius: '10px',
      marginLeft: '4px'
    },
    chevron: {
      fontSize: '10px',
      color: '#64748b',
      transition: 'transform 0.15s'
    },
    noResults: {
      padding: '12px',
      textAlign: 'center',
      color: '#64748b',
      fontSize: '13px'
    }
  };
  const safeSelected = Array.isArray(selectedItems) ? selectedItems : [];
  const formatItemLabel = item => {
    if (typeof formatLabel === 'function') {
      return formatLabel(item);
    }
    return item;
  };
  const filteredItems = React.useMemo(() => {
    if (!search) return items;
    const searchLower = search.toLowerCase();
    return items.filter(item => {
      const labelText = formatItemLabel(item);
      return labelText.toLowerCase().includes(searchLower);
    });
  }, [items, search, formatLabel]);
  const isSelected = item => safeSelected.includes(item);
  const toggleItem = item => {
    const next = isSelected(item) ? safeSelected.filter(v => v !== item) : [...safeSelected, item];
    onChange(next);
  };
  const clearFilters = () => {
    onChange([]);
  };
  const selectAll = () => {
    onChange(items);
  };
  React.useEffect(() => {
    const handleClickOutside = e => {
      if (dropdownRef.current && !dropdownRef.current.contains(e.target)) {
        setDropdownOpen(false);
        setSearch('');
        setHoveredItem(null);
      }
    };
    document.addEventListener('mousedown', handleClickOutside);
    return () => document.removeEventListener('mousedown', handleClickOutside);
  }, []);
  return <div style={styles.dropdownContainer} ref={dropdownRef}>
      <button type="button" onClick={() => setDropdownOpen(!dropdownOpen)} style={{
    ...styles.dropdownTrigger,
    ...safeSelected.length > 0 ? styles.dropdownTriggerActive : {}
  }}>
        <span>
          {label}
          {safeSelected.length > 0 && <span style={styles.badge}>{safeSelected.length}</span>}
        </span>
        <span style={{
    ...styles.chevron,
    transform: dropdownOpen ? 'rotate(180deg)' : 'rotate(0deg)'
  }}>
          ▼
        </span>
      </button>
      {dropdownOpen && <div style={styles.dropdownMenu}>
          <div style={styles.dropdownHeader}>
            <input type="text" placeholder={searchPlaceholder} value={search} onChange={e => setSearch(e.target.value)} style={styles.dropdownSearchInput} autoFocus />
            <div style={styles.selectActions}>
              <button type="button" onClick={selectAll} style={styles.selectActionBtn} onMouseEnter={e => {
    e.target.style.color = '#1e293b';
  }} onMouseLeave={e => {
    e.target.style.color = '#64748b';
  }}>
                Select all
              </button>
              <span style={{
    color: '#e2e8f0'
  }}>|</span>
              <button type="button" onClick={clearFilters} style={styles.selectActionBtn} onMouseEnter={e => {
    e.target.style.color = '#1e293b';
  }} onMouseLeave={e => {
    e.target.style.color = '#64748b';
  }}>
                Clear
              </button>
            </div>
          </div>
          <div style={styles.dropdownList}>
            {filteredItems.length === 0 ? <div style={styles.noResults}>{emptyLabel}</div> : filteredItems.map(item => <div key={item} onClick={() => toggleItem(item)} onMouseEnter={() => setHoveredItem(item)} onMouseLeave={() => setHoveredItem(null)} style={{
    ...styles.dropdownItem,
    ...hoveredItem === item ? styles.dropdownItemHover : {}
  }}>
                  <div style={{
    ...styles.checkbox,
    ...isSelected(item) ? styles.checkboxChecked : {}
  }}>
                    {isSelected(item) && <span style={styles.checkmark}>✓</span>}
                  </div>
                  <span>{formatItemLabel(item)}</span>
                </div>)}
          </div>
        </div>}
    </div>;
};

export const SearchBar = ({value, onChange, placeholder = 'Search...'}) => {
  const baseStyle = {
    padding: '10px 14px',
    borderRadius: '8px',
    border: '1px solid #e2e8f0',
    fontSize: '14px',
    outline: 'none',
    backgroundColor: '#fafafa',
    flex: 1,
    minWidth: 0
  };
  return <input type="text" placeholder={placeholder} value={value} onChange={e => onChange(e.target.value)} style={baseStyle} />;
};

export const ConnectorPage = ({connector}) => {
  const styles = {
    header: {
      display: 'flex',
      alignItems: 'center',
      gap: '12px',
      marginBottom: '24px'
    },
    tagsRow: {
      display: 'flex',
      flexWrap: 'wrap',
      gap: '6px',
      marginTop: '8px'
    },
    releaseTag: {
      display: 'inline-block',
      padding: '2px 8px',
      borderRadius: '4px',
      fontSize: '11px',
      fontWeight: '500'
    },
    betaTag: {
      backgroundColor: '#fef3c7',
      color: '#b45309'
    },
    previewTag: {
      backgroundColor: '#E1E9F4',
      color: '#0D58AE',
      border: '1px solid #BFD5F1'
    },
    categoryTag: {
      display: 'inline-block',
      padding: '2px 8px',
      borderRadius: '4px',
      fontSize: '11px',
      fontWeight: '500',
      backgroundColor: '#f1f5f9',
      color: '#475569'
    },
    icon: {
      width: '48px',
      height: '48px',
      borderRadius: '10px',
      backgroundColor: '#f8fafc',
      padding: '2px'
    },
    title: {
      fontSize: '24px',
      fontWeight: '600'
    },
    subtitle: {
      fontSize: '14px',
      color: '#64748b'
    },
    authDescription: {
      fontSize: '14px',
      color: '#64748b',
      marginTop: 0
    },
    sectionTitle: {
      fontSize: '18px',
      fontWeight: '600',
      marginBottom: '12px'
    },
    authList: {
      paddingLeft: '20px',
      color: '#374151'
    },
    codeWrapper: {
      position: 'relative',
      display: 'inline-flex',
      alignItems: 'center',
      maxWidth: '100%',
      cursor: 'pointer',
      overflowX: 'auto',
      overflowY: 'hidden',
      msOverflowStyle: 'none',
      scrollbarWidth: 'none'
    },
    code: {
      backgroundColor: '#f1f5f9',
      padding: '4px 8px',
      borderRadius: '4px',
      fontSize: '11px',
      color: '#475569',
      display: 'inline-block',
      whiteSpace: 'nowrap',
      transition: 'background-color 0.15s'
    },
    codeHover: {
      backgroundColor: '#e2e8f0'
    },
    codeCopied: {
      backgroundColor: '#d1fae5',
      color: '#065f46'
    },
    tooltip: {
      position: 'absolute',
      top: '100%',
      left: '50%',
      transform: 'translateX(-50%)',
      backgroundColor: '#1e293b',
      color: 'white',
      padding: '6px 10px',
      borderRadius: '6px',
      fontSize: '11px',
      whiteSpace: 'nowrap',
      marginTop: '6px',
      zIndex: 50,
      maxWidth: '300px',
      wordBreak: 'break-all'
    },
    tooltipArrow: {
      position: 'absolute',
      bottom: '100%',
      left: '50%',
      transform: 'translateX(-50%)',
      borderWidth: '5px',
      borderStyle: 'solid',
      borderColor: 'transparent transparent #1e293b transparent',
      zIndex: 50
    },
    tdDescription: {
      padding: '10px 12px',
      color: '#64748b',
      verticalAlign: 'top',
      maxWidth: '400px'
    }
  };
  const [search, setSearch] = React.useState('');
  const [copiedId, setCopiedId] = React.useState(null);
  const [selectedScopes, setSelectedScopes] = React.useState([]);
  const availableScopes = React.useMemo(() => {
    const set = new Set();
    connector.actions.forEach(a => {
      if (Array.isArray(a.requiredScopes)) {
        a.requiredScopes.forEach(s => {
          if (s) set.add(s);
        });
      }
    });
    return Array.from(set).sort();
  }, [connector.actions]);
  const filtered = React.useMemo(() => {
    const searchLower = search.toLowerCase();
    return connector.actions.filter(a => {
      const matchesSearch = a.label.toLowerCase().includes(searchLower) || a.description.toLowerCase().includes(searchLower) || a.id.toLowerCase().includes(searchLower);
      if (!matchesSearch) return false;
      if (selectedScopes.length === 0) return true;
      const scopes = Array.isArray(a.requiredScopes) ? a.requiredScopes : [];
      if (scopes.length === 0) return false;
      return selectedScopes.some(scope => scopes.includes(scope));
    });
  }, [connector.actions, search, selectedScopes]);
  const handleImageError = e => {
    e.target.style.display = 'none';
  };
  const formatCategoryLabel = cat => {
    const acronyms = ['ats', 'crm', 'hris', 'iam', 'lms'];
    if (acronyms.includes(cat.toLowerCase())) {
      return cat.toUpperCase();
    }
    return cat.replace(/_/g, ' ').replace(/\b\w/g, c => c.toUpperCase());
  };
  const ReleaseTag = () => {
    if (!connector.releaseStage || connector.releaseStage === 'ga') return null;
    const tagStyle = connector.releaseStage === 'beta' ? {
      ...styles.releaseTag,
      ...styles.betaTag
    } : {
      ...styles.releaseTag,
      ...styles.previewTag
    };
    return <span style={tagStyle}>
        {connector.releaseStage.charAt(0).toUpperCase() + connector.releaseStage.slice(1)}
      </span>;
  };
  const CategoryTags = () => {
    if (!connector.categories || connector.categories.length === 0) return null;
    return <>
        {connector.categories.map(cat => <span key={cat} style={styles.categoryTag}>
            {formatCategoryLabel(cat)}
          </span>)}
      </>;
  };
  const copyToClipboard = async (text, id) => {
    try {
      await navigator.clipboard.writeText(text);
      setCopiedId(id);
      setTimeout(() => setCopiedId(null), 1500);
    } catch (err) {
      console.error('Failed to copy:', err);
    }
  };
  const CopyChip = ({text, copyId}) => {
    const [isHovered, setIsHovered] = React.useState(false);
    const isCopied = copiedId === copyId;
    if (!text) {
      return null;
    }
    const codeStyle = {
      ...styles.code,
      ...isCopied ? styles.codeCopied : isHovered ? styles.codeHover : {}
    };
    return <div style={styles.codeWrapper} onMouseEnter={() => setIsHovered(true)} onMouseLeave={() => setIsHovered(false)} onClick={() => copyToClipboard(text, copyId)} title="">
        {(isHovered || isCopied) && <div style={styles.tooltip}>
            {isCopied ? '✓ Copied!' : 'Click to copy'}
            <div style={styles.tooltipArrow} />
          </div>}
        <code style={codeStyle}>
          {text}
        </code>
      </div>;
  };
  const KeyCell = ({id}) => <CopyChip text={id} copyId={id} />;
  const ScopesCell = ({scopes, actionId}) => {
    const scopeList = Array.isArray(scopes) ? scopes.filter(Boolean) : [];
    if (scopeList.length === 0) return null;
    return <div style={{
      display: 'flex',
      flexWrap: 'wrap',
      gap: '6px'
    }}>
        {scopeList.map(scope => <CopyChip key={scope} text={scope} copyId={`scopes:${actionId}:${scope}`} />)}
      </div>;
  };
  return <div>
      {}
      <div style={styles.header}>
        <img src={connector.icon} alt={connector.name} style={styles.icon} onError={handleImageError} />
        <div>
          <div style={styles.title}>{connector.name}</div>
          <div style={styles.subtitle}>
            {connector.actions.length} actions · {connector.authentication.length} auth method{connector.authentication.length !== 1 ? 's' : ''}
          </div>
          {connector.releaseStage && connector.releaseStage !== 'ga' || connector.categories && connector.categories.length > 0 ? <div style={styles.tagsRow}>
              <ReleaseTag />
              <CategoryTags />
            </div> : null}
        </div>
      </div>

      {}
      <div style={styles.sectionTitle}>Authentication</div>
      <Columns cols={2}>        
        {connector.authentication.length > 0 ? connector.authentication.map(auth => {
    const authLabel = auth?.label || '';
    const authDescription = auth?.description;
    const configGuide = auth?.configGuide;
    const setupGuide = auth?.setupGuide;
    const hasConfigGuide = !!configGuide;
    const hasSetupGuide = !!setupGuide;
    const hasAnyGuide = hasConfigGuide || hasSetupGuide;
    return <Card key={authLabel} title={authLabel}>
                {authDescription && <p style={{
      ...styles.authDescription,
      marginBottom: hasAnyGuide ? '8px' : 0
    }}>
                    {authDescription}
                  </p>}
                {hasAnyGuide && <span style={{
      fontSize: '14px'
    }}>
                    Guides: {hasSetupGuide && <a href={`/${setupGuide}`} style={{
      textDecoration: 'none'
    }}>Auth Config</a>}
                    {hasConfigGuide && hasSetupGuide && ', '}
                    {hasConfigGuide && <a href={`/${configGuide}`} style={{
      textDecoration: 'none'
    }}>Link Account</a>}
                  </span>}
              </Card>;
  }) : <>
            Contact StackOne for authentication details.
          </>}
      </Columns>

      {connector.documentation?.references?.length > 0 && <>
          <div style={styles.sectionTitle}>References</div>
          <Columns cols={2}>
            {connector.documentation.references.map(ref => {
    let safeHref;
    try {
      const parsed = new URL(ref.url);
      safeHref = parsed.protocol === 'http:' || parsed.protocol === 'https:' ? ref.url : undefined;
    } catch {
      safeHref = undefined;
    }
    return <Card key={`${ref.title}-${ref.url}`} title={ref.title} href={safeHref}>
                  {ref.description}
                </Card>;
  })}
          </Columns>
        </>}

      <ActionsLibrary search={search} setSearch={setSearch} filtered={filtered} sharedStyles={{
    sectionTitle: styles.sectionTitle
  }} KeyCell={KeyCell} ScopesCell={ScopesCell} availableScopes={availableScopes} selectedScopes={selectedScopes} setSelectedScopes={setSelectedScopes} />

      <GettingStarted connector={connector} />

    </div>;
};

export const connector = {
  "key": "zohorecruit",
  "name": "Zoho Recruit",
  "icon": "https://stackone-logos.com/api/zoho-recruit/filled/png",
  "authentication": [{
    "label": "OAuth 2.0",
    "description": "Connect your Zoho Recruit account securely using OAuth 2.0 authorization. Access tokens expire after 1 hour and refresh...",
    "configGuide": "connectors/zohorecruit/guides/link-account/oauth-2-0",
    "setupGuide": "connectors/zohorecruit/guides/auth-config/oauth-2-0"
  }],
  "actions": [{
    "id": "zohorecruit_get_candidates",
    "label": "Get Candidates",
    "description": "Retrieve a list of candidate records from Zoho Recruit with optional filtering and sorting.",
    "requiredScopes": ["ZohoRecruit.modules.candidate.READ"]
  }, {
    "id": "zohorecruit_get_candidate",
    "label": "Get Candidate",
    "description": "Retrieve a specific candidate record by its unique ID.",
    "requiredScopes": ["ZohoRecruit.modules.candidate.READ"]
  }, {
    "id": "zohorecruit_create_candidate",
    "label": "Create Candidate",
    "description": "Create one or more new candidate records in Zoho Recruit.",
    "requiredScopes": ["ZohoRecruit.modules.candidate.CREATE"]
  }, {
    "id": "zohorecruit_update_candidate",
    "label": "Update Candidate",
    "description": "Update an existing candidate record in Zoho Recruit by its unique ID.",
    "requiredScopes": ["ZohoRecruit.modules.candidate.UPDATE"]
  }, {
    "id": "zohorecruit_delete_candidate",
    "label": "Delete Candidate",
    "description": "Delete a specific candidate record from Zoho Recruit by its unique ID.",
    "requiredScopes": ["ZohoRecruit.modules.candidate.DELETE"]
  }, {
    "id": "zohorecruit_search_candidates",
    "label": "Search Candidates",
    "description": "Search for candidate records in Zoho Recruit using criteria, email, or phone.",
    "requiredScopes": ["ZohoRecruit.modules.candidate.READ"]
  }, {
    "id": "zohorecruit_associate_candidate",
    "label": "Associate Candidate",
    "description": "Associate one or more candidates with one or more job openings in Zoho Recruit.",
    "requiredScopes": ["ZohoRecruit.modules.candidate.UPDATE"]
  }, {
    "id": "zohorecruit_change_candidate_status",
    "label": "Change Candidate Status",
    "description": "Change the hiring status of one or more candidates in Zoho Recruit.",
    "requiredScopes": ["ZohoRecruit.modules.candidate.UPDATE"]
  }, {
    "id": "zohorecruit_get_job_openings",
    "label": "Get Job Openings",
    "description": "Retrieve a list of job opening records from Zoho Recruit with optional filtering and sorting.",
    "requiredScopes": ["ZohoRecruit.modules.jobopening.READ"]
  }, {
    "id": "zohorecruit_get_job_opening",
    "label": "Get Job Opening",
    "description": "Retrieve a specific job opening record by its unique ID.",
    "requiredScopes": ["ZohoRecruit.modules.jobopening.READ"]
  }, {
    "id": "zohorecruit_create_job_opening",
    "label": "Create Job Opening",
    "description": "Create one or more new job opening records in Zoho Recruit.",
    "requiredScopes": ["ZohoRecruit.modules.jobopening.CREATE"]
  }, {
    "id": "zohorecruit_update_job_opening",
    "label": "Update Job Opening",
    "description": "Update an existing job opening record in Zoho Recruit by its unique ID.",
    "requiredScopes": ["ZohoRecruit.modules.jobopening.UPDATE"]
  }, {
    "id": "zohorecruit_delete_job_opening",
    "label": "Delete Job Opening",
    "description": "Delete a specific job opening record from Zoho Recruit by its unique ID.",
    "requiredScopes": ["ZohoRecruit.modules.jobopening.DELETE"]
  }, {
    "id": "zohorecruit_search_job_openings",
    "label": "Search Job Openings",
    "description": "Search for job opening records in Zoho Recruit using field-based criteria.",
    "requiredScopes": ["ZohoRecruit.modules.jobopening.READ"]
  }, {
    "id": "zohorecruit_change_job_opening_status",
    "label": "Change Job Opening Status",
    "description": "Change the status of one or more job openings in Zoho Recruit.",
    "requiredScopes": ["ZohoRecruit.modules.jobopening.UPDATE"]
  }, {
    "id": "zohorecruit_get_interviews",
    "label": "Get Interviews",
    "description": "Retrieve a list of interview records from Zoho Recruit with optional filtering and sorting.",
    "requiredScopes": ["ZohoRecruit.modules.interview.READ"]
  }, {
    "id": "zohorecruit_get_interview",
    "label": "Get Interview",
    "description": "Retrieve a specific interview record by its unique ID.",
    "requiredScopes": ["ZohoRecruit.modules.interview.READ"]
  }, {
    "id": "zohorecruit_create_interview",
    "label": "Create Interview",
    "description": "Create one or more new interview records in Zoho Recruit.",
    "requiredScopes": ["ZohoRecruit.modules.interview.CREATE"]
  }, {
    "id": "zohorecruit_update_interview",
    "label": "Update Interview",
    "description": "Update an existing interview record in Zoho Recruit by its unique ID.",
    "requiredScopes": ["ZohoRecruit.modules.interview.UPDATE"]
  }, {
    "id": "zohorecruit_delete_interview",
    "label": "Delete Interview",
    "description": "Delete a specific interview record from Zoho Recruit by its unique ID.",
    "requiredScopes": ["ZohoRecruit.modules.interview.DELETE"]
  }, {
    "id": "zohorecruit_search_interviews",
    "label": "Search Interviews",
    "description": "Search for interview records in Zoho Recruit using field-based criteria.",
    "requiredScopes": ["ZohoRecruit.modules.interview.READ"]
  }, {
    "id": "zohorecruit_get_contacts",
    "label": "Get Contacts",
    "description": "Retrieve a list of contact records from Zoho Recruit with optional filtering and sorting.",
    "requiredScopes": ["ZohoRecruit.modules.contact.READ"]
  }, {
    "id": "zohorecruit_get_contact",
    "label": "Get Contact",
    "description": "Retrieve a specific contact record by its unique ID.",
    "requiredScopes": ["ZohoRecruit.modules.contact.READ"]
  }, {
    "id": "zohorecruit_create_contact",
    "label": "Create Contact",
    "description": "Create one or more new contact records in Zoho Recruit.",
    "requiredScopes": ["ZohoRecruit.modules.contact.CREATE"]
  }, {
    "id": "zohorecruit_update_contact",
    "label": "Update Contact",
    "description": "Update an existing contact record in Zoho Recruit by its unique ID.",
    "requiredScopes": ["ZohoRecruit.modules.contact.UPDATE"]
  }, {
    "id": "zohorecruit_delete_contact",
    "label": "Delete Contact",
    "description": "Delete a specific contact record from Zoho Recruit by its unique ID.",
    "requiredScopes": ["ZohoRecruit.modules.contact.DELETE"]
  }, {
    "id": "zohorecruit_search_contacts",
    "label": "Search Contacts",
    "description": "Search for contact records in Zoho Recruit using criteria, email, or phone. At least one of criteria, email, or phone mu...",
    "requiredScopes": ["ZohoRecruit.modules.contact.READ"]
  }, {
    "id": "zohorecruit_get_clients",
    "label": "Get Clients",
    "description": "Retrieve a paginated list of client records from the Clients module in Zoho Recruit.",
    "requiredScopes": ["ZohoRecruit.modules.client.READ"]
  }, {
    "id": "zohorecruit_get_client",
    "label": "Get Client",
    "description": "Retrieve the full details of a single client record by its unique ID.",
    "requiredScopes": ["ZohoRecruit.modules.client.READ"]
  }, {
    "id": "zohorecruit_create_client",
    "label": "Create Client",
    "description": "Create one or more new client records in the Clients module of Zoho Recruit.",
    "requiredScopes": ["ZohoRecruit.modules.client.CREATE"]
  }, {
    "id": "zohorecruit_update_client",
    "label": "Update Client",
    "description": "Update one or more fields of an existing client record in Zoho Recruit by its unique ID.",
    "requiredScopes": ["ZohoRecruit.modules.client.UPDATE"]
  }, {
    "id": "zohorecruit_delete_client",
    "label": "Delete Client",
    "description": "Permanently delete a client record from the Clients module in Zoho Recruit by its unique ID.",
    "requiredScopes": ["ZohoRecruit.modules.client.DELETE"]
  }, {
    "id": "zohorecruit_search_clients",
    "label": "Search Clients",
    "description": "Search for client records in Zoho Recruit using field-based criteria or a keyword.",
    "requiredScopes": ["ZohoRecruit.modules.client.READ"]
  }, {
    "id": "zohorecruit_get_departments",
    "label": "Get Departments",
    "description": "Retrieve a list of department records from Zoho Recruit with optional filtering and sorting.",
    "requiredScopes": ["ZohoRecruit.modules.department.READ"]
  }, {
    "id": "zohorecruit_get_department",
    "label": "Get Department",
    "description": "Retrieve a specific department record by its unique ID.",
    "requiredScopes": ["ZohoRecruit.modules.department.READ"]
  }, {
    "id": "zohorecruit_create_department",
    "label": "Create Department",
    "description": "Create one or more new department records in Zoho Recruit.",
    "requiredScopes": ["ZohoRecruit.modules.department.CREATE"]
  }, {
    "id": "zohorecruit_update_department",
    "label": "Update Department",
    "description": "Update an existing department record in Zoho Recruit by its unique ID.",
    "requiredScopes": ["ZohoRecruit.modules.department.UPDATE"]
  }, {
    "id": "zohorecruit_delete_department",
    "label": "Delete Department",
    "description": "Delete a specific department record from Zoho Recruit by its unique ID.",
    "requiredScopes": ["ZohoRecruit.modules.department.DELETE"]
  }, {
    "id": "zohorecruit_get_tasks",
    "label": "Get Tasks",
    "description": "Retrieve a list of task records from Zoho Recruit with optional filtering and sorting.",
    "requiredScopes": ["ZohoRecruit.modules.task.READ"]
  }, {
    "id": "zohorecruit_get_task",
    "label": "Get Task",
    "description": "Retrieve a specific task record by its unique ID.",
    "requiredScopes": ["ZohoRecruit.modules.task.READ"]
  }, {
    "id": "zohorecruit_create_task",
    "label": "Create Task",
    "description": "Create one or more new task records in Zoho Recruit.",
    "requiredScopes": ["ZohoRecruit.modules.task.CREATE"]
  }, {
    "id": "zohorecruit_update_task",
    "label": "Update Task",
    "description": "Update an existing task record in Zoho Recruit by its unique ID.",
    "requiredScopes": ["ZohoRecruit.modules.task.UPDATE"]
  }, {
    "id": "zohorecruit_delete_task",
    "label": "Delete Task",
    "description": "Delete a specific task record from Zoho Recruit by its unique ID.",
    "requiredScopes": ["ZohoRecruit.modules.task.DELETE"]
  }, {
    "id": "zohorecruit_get_events",
    "label": "Get Events",
    "description": "Retrieve a list of event records from Zoho Recruit with optional filtering and sorting.",
    "requiredScopes": ["ZohoRecruit.modules.event.READ"]
  }, {
    "id": "zohorecruit_get_event",
    "label": "Get Event",
    "description": "Retrieve a specific event record by its unique ID.",
    "requiredScopes": ["ZohoRecruit.modules.event.READ"]
  }, {
    "id": "zohorecruit_create_event",
    "label": "Create Event",
    "description": "Create one or more new event records in Zoho Recruit.",
    "requiredScopes": ["ZohoRecruit.modules.event.CREATE"]
  }, {
    "id": "zohorecruit_update_event",
    "label": "Update Event",
    "description": "Update an existing event record in Zoho Recruit by its unique ID.",
    "requiredScopes": ["ZohoRecruit.modules.event.UPDATE"]
  }, {
    "id": "zohorecruit_delete_event",
    "label": "Delete Event",
    "description": "Delete a specific event record from Zoho Recruit by its unique ID.",
    "requiredScopes": ["ZohoRecruit.modules.event.DELETE"]
  }, {
    "id": "zohorecruit_get_notes",
    "label": "Get Notes",
    "description": "Retrieve a list of note records from Zoho Recruit. Only admin users can fetch records from the Notes module.",
    "requiredScopes": ["ZohoRecruit.modules.ALL"]
  }, {
    "id": "zohorecruit_get_note",
    "label": "Get Note",
    "description": "Retrieve a specific note record by its unique ID.",
    "requiredScopes": ["ZohoRecruit.modules.ALL"]
  }, {
    "id": "zohorecruit_create_note",
    "label": "Create Note",
    "description": "Create a new note in Zoho Recruit and associate it with a module record.",
    "requiredScopes": ["ZohoRecruit.modules.ALL"]
  }, {
    "id": "zohorecruit_update_note",
    "label": "Update Note",
    "description": "Update an existing note in Zoho Recruit by its unique ID.",
    "requiredScopes": ["ZohoRecruit.modules.ALL"]
  }, {
    "id": "zohorecruit_delete_note",
    "label": "Delete Note",
    "description": "Delete a specific note record from Zoho Recruit by its unique ID.",
    "requiredScopes": ["ZohoRecruit.modules.ALL"]
  }, {
    "id": "zohorecruit_create_submission",
    "label": "Create Submission",
    "description": "Create a new submission in Zoho Recruit to formally link a candidate to a job opening with stage tracking.",
    "requiredScopes": ["ZohoRecruit.modules.ALL"]
  }, {
    "id": "zohorecruit_get_users",
    "label": "Get Users",
    "description": "Retrieve a list of user records from your Zoho Recruit organization.",
    "requiredScopes": ["ZohoRecruit.users.all"]
  }, {
    "id": "zohorecruit_get_user",
    "label": "Get User",
    "description": "Retrieve a specific user record by their unique ID.",
    "requiredScopes": ["ZohoRecruit.users.all"]
  }, {
    "id": "zohorecruit_get_modules",
    "label": "Get Modules",
    "description": "Retrieve the list of all available modules in your Zoho Recruit account.",
    "requiredScopes": ["ZohoRecruit.settings.all"]
  }, {
    "id": "zohorecruit_get_module",
    "label": "Get Module",
    "description": "Retrieve metadata for a specific module in Zoho Recruit by its API name.",
    "requiredScopes": ["ZohoRecruit.settings.all"]
  }, {
    "id": "zohorecruit_get_fields",
    "label": "Get Fields",
    "description": "Retrieve the list of fields and their metadata for a specific module in Zoho Recruit.",
    "requiredScopes": ["ZohoRecruit.settings.all"]
  }, {
    "id": "zohorecruit_get_layouts",
    "label": "Get Layouts",
    "description": "Retrieve the list of layout configurations for a specific module in Zoho Recruit.",
    "requiredScopes": ["ZohoRecruit.settings.all"]
  }, {
    "id": "zohorecruit_get_custom_views",
    "label": "Get Custom Views",
    "description": "Retrieve the list of custom views available for a specific module in Zoho Recruit.",
    "requiredScopes": ["ZohoRecruit.settings.all"]
  }, {
    "id": "zohorecruit_get_roles",
    "label": "Get Roles",
    "description": "Retrieve the list of roles configured in your Zoho Recruit organization.",
    "requiredScopes": ["ZohoRecruit.settings.all"]
  }, {
    "id": "zohorecruit_get_profiles",
    "label": "Get Profiles",
    "description": "Retrieve the list of profiles configured in your Zoho Recruit organization.",
    "requiredScopes": ["ZohoRecruit.settings.all"]
  }],
  "releaseStage": "preview",
  "categories": ["ats"],
  "scopeDefinitions": [{
    "name": "ZohoRecruit.modules.ALL",
    "description": "Full access to all Zoho Recruit modules for read, create, update, and delete operations",
    "includes": ["ZohoRecruit.modules.candidate.ALL", "ZohoRecruit.modules.jobopening.ALL", "ZohoRecruit.modules.interview.ALL", "ZohoRecruit.modules.contact.ALL", "ZohoRecruit.modules.client.ALL", "ZohoRecruit.modules.department.ALL", "ZohoRecruit.modules.task.ALL", "ZohoRecruit.modules.event.ALL", "ZohoRecruit.modules.campaign.ALL", "ZohoRecruit.modules.application.ALL", "ZohoRecruit.modules.vendors.ALL", "ZohoRecruit.modules.referral.ALL"]
  }, {
    "name": "ZohoRecruit.modules.candidate.ALL",
    "description": "Full access to the Candidates module for read, create, update, and delete operations",
    "includes": ["ZohoRecruit.modules.candidate.READ", "ZohoRecruit.modules.candidate.CREATE", "ZohoRecruit.modules.candidate.UPDATE", "ZohoRecruit.modules.candidate.DELETE"]
  }, {
    "name": "ZohoRecruit.modules.candidate.READ",
    "description": "Read-only access to the Candidates module"
  }, {
    "name": "ZohoRecruit.modules.candidate.CREATE",
    "description": "Permission to create candidate records"
  }, {
    "name": "ZohoRecruit.modules.candidate.UPDATE",
    "description": "Permission to update candidate records and change candidate status"
  }, {
    "name": "ZohoRecruit.modules.candidate.DELETE",
    "description": "Permission to delete candidate records"
  }, {
    "name": "ZohoRecruit.modules.jobopening.ALL",
    "description": "Full access to the Job Openings module for read, create, update, and delete operations",
    "includes": ["ZohoRecruit.modules.jobopening.READ", "ZohoRecruit.modules.jobopening.CREATE", "ZohoRecruit.modules.jobopening.UPDATE", "ZohoRecruit.modules.jobopening.DELETE"]
  }, {
    "name": "ZohoRecruit.modules.jobopening.READ",
    "description": "Read-only access to the Job Openings module"
  }, {
    "name": "ZohoRecruit.modules.jobopening.CREATE",
    "description": "Permission to create job opening records"
  }, {
    "name": "ZohoRecruit.modules.jobopening.UPDATE",
    "description": "Permission to update job opening records and change job opening status"
  }, {
    "name": "ZohoRecruit.modules.jobopening.DELETE",
    "description": "Permission to delete job opening records"
  }, {
    "name": "ZohoRecruit.modules.interview.ALL",
    "description": "Full access to the Interviews module for read, create, update, and delete operations",
    "includes": ["ZohoRecruit.modules.interview.READ", "ZohoRecruit.modules.interview.CREATE", "ZohoRecruit.modules.interview.UPDATE", "ZohoRecruit.modules.interview.DELETE"]
  }, {
    "name": "ZohoRecruit.modules.interview.READ",
    "description": "Read-only access to the Interviews module"
  }, {
    "name": "ZohoRecruit.modules.interview.CREATE",
    "description": "Permission to create interview records"
  }, {
    "name": "ZohoRecruit.modules.interview.UPDATE",
    "description": "Permission to update interview records"
  }, {
    "name": "ZohoRecruit.modules.interview.DELETE",
    "description": "Permission to delete interview records"
  }, {
    "name": "ZohoRecruit.modules.contact.ALL",
    "description": "Full access to the Contacts module for read, create, update, and delete operations",
    "includes": ["ZohoRecruit.modules.contact.READ", "ZohoRecruit.modules.contact.CREATE", "ZohoRecruit.modules.contact.UPDATE", "ZohoRecruit.modules.contact.DELETE"]
  }, {
    "name": "ZohoRecruit.modules.contact.READ",
    "description": "Read-only access to the Contacts module"
  }, {
    "name": "ZohoRecruit.modules.contact.CREATE",
    "description": "Permission to create contact records"
  }, {
    "name": "ZohoRecruit.modules.contact.UPDATE",
    "description": "Permission to update contact records"
  }, {
    "name": "ZohoRecruit.modules.contact.DELETE",
    "description": "Permission to delete contact records"
  }, {
    "name": "ZohoRecruit.modules.client.ALL",
    "description": "Full access to the Clients module for read, create, update, and delete operations",
    "includes": ["ZohoRecruit.modules.client.READ", "ZohoRecruit.modules.client.CREATE", "ZohoRecruit.modules.client.UPDATE", "ZohoRecruit.modules.client.DELETE"]
  }, {
    "name": "ZohoRecruit.modules.client.READ",
    "description": "Read-only access to the Clients module"
  }, {
    "name": "ZohoRecruit.modules.client.CREATE",
    "description": "Permission to create client records"
  }, {
    "name": "ZohoRecruit.modules.client.UPDATE",
    "description": "Permission to update client records"
  }, {
    "name": "ZohoRecruit.modules.client.DELETE",
    "description": "Permission to delete client records"
  }, {
    "name": "ZohoRecruit.modules.department.ALL",
    "description": "Full access to the Departments module for read, create, update, and delete operations",
    "includes": ["ZohoRecruit.modules.department.READ", "ZohoRecruit.modules.department.CREATE", "ZohoRecruit.modules.department.UPDATE", "ZohoRecruit.modules.department.DELETE"]
  }, {
    "name": "ZohoRecruit.modules.department.READ",
    "description": "Read-only access to the Departments module"
  }, {
    "name": "ZohoRecruit.modules.department.CREATE",
    "description": "Permission to create department records"
  }, {
    "name": "ZohoRecruit.modules.department.UPDATE",
    "description": "Permission to update department records"
  }, {
    "name": "ZohoRecruit.modules.department.DELETE",
    "description": "Permission to delete department records"
  }, {
    "name": "ZohoRecruit.modules.task.ALL",
    "description": "Full access to the Tasks module for read, create, update, and delete operations",
    "includes": ["ZohoRecruit.modules.task.READ", "ZohoRecruit.modules.task.CREATE", "ZohoRecruit.modules.task.UPDATE", "ZohoRecruit.modules.task.DELETE"]
  }, {
    "name": "ZohoRecruit.modules.task.READ",
    "description": "Read-only access to the Tasks module"
  }, {
    "name": "ZohoRecruit.modules.task.CREATE",
    "description": "Permission to create task records"
  }, {
    "name": "ZohoRecruit.modules.task.UPDATE",
    "description": "Permission to update task records"
  }, {
    "name": "ZohoRecruit.modules.task.DELETE",
    "description": "Permission to delete task records"
  }, {
    "name": "ZohoRecruit.modules.event.ALL",
    "description": "Full access to the Events module for read, create, update, and delete operations",
    "includes": ["ZohoRecruit.modules.event.READ", "ZohoRecruit.modules.event.CREATE", "ZohoRecruit.modules.event.UPDATE", "ZohoRecruit.modules.event.DELETE"]
  }, {
    "name": "ZohoRecruit.modules.event.READ",
    "description": "Read-only access to the Events module"
  }, {
    "name": "ZohoRecruit.modules.event.CREATE",
    "description": "Permission to create event records"
  }, {
    "name": "ZohoRecruit.modules.event.UPDATE",
    "description": "Permission to update event records"
  }, {
    "name": "ZohoRecruit.modules.event.DELETE",
    "description": "Permission to delete event records"
  }, {
    "name": "ZohoRecruit.modules.campaign.ALL",
    "description": "Full access to the Campaigns module for read, create, update, and delete operations",
    "includes": ["ZohoRecruit.modules.campaign.READ", "ZohoRecruit.modules.campaign.CREATE", "ZohoRecruit.modules.campaign.UPDATE", "ZohoRecruit.modules.campaign.DELETE"]
  }, {
    "name": "ZohoRecruit.modules.campaign.READ",
    "description": "Read-only access to the Campaigns module"
  }, {
    "name": "ZohoRecruit.modules.campaign.CREATE",
    "description": "Permission to create campaign records"
  }, {
    "name": "ZohoRecruit.modules.campaign.UPDATE",
    "description": "Permission to update campaign records"
  }, {
    "name": "ZohoRecruit.modules.campaign.DELETE",
    "description": "Permission to delete campaign records"
  }, {
    "name": "ZohoRecruit.modules.application.ALL",
    "description": "Full access to the Applications module for read, create, update, and delete operations",
    "includes": ["ZohoRecruit.modules.application.READ", "ZohoRecruit.modules.application.CREATE", "ZohoRecruit.modules.application.UPDATE", "ZohoRecruit.modules.application.DELETE"]
  }, {
    "name": "ZohoRecruit.modules.application.READ",
    "description": "Read-only access to the Applications module"
  }, {
    "name": "ZohoRecruit.modules.application.CREATE",
    "description": "Permission to create application records"
  }, {
    "name": "ZohoRecruit.modules.application.UPDATE",
    "description": "Permission to update application records"
  }, {
    "name": "ZohoRecruit.modules.application.DELETE",
    "description": "Permission to delete application records"
  }, {
    "name": "ZohoRecruit.modules.vendors.ALL",
    "description": "Full access to the Vendors module for read, create, update, and delete operations",
    "includes": ["ZohoRecruit.modules.vendors.READ", "ZohoRecruit.modules.vendors.CREATE", "ZohoRecruit.modules.vendors.UPDATE", "ZohoRecruit.modules.vendors.DELETE"]
  }, {
    "name": "ZohoRecruit.modules.vendors.READ",
    "description": "Read-only access to the Vendors module"
  }, {
    "name": "ZohoRecruit.modules.vendors.CREATE",
    "description": "Permission to create vendor records"
  }, {
    "name": "ZohoRecruit.modules.vendors.UPDATE",
    "description": "Permission to update vendor records"
  }, {
    "name": "ZohoRecruit.modules.vendors.DELETE",
    "description": "Permission to delete vendor records"
  }, {
    "name": "ZohoRecruit.modules.referral.ALL",
    "description": "Full access to the Referrals module for read, create, update, and delete operations",
    "includes": ["ZohoRecruit.modules.referral.READ", "ZohoRecruit.modules.referral.CREATE", "ZohoRecruit.modules.referral.UPDATE", "ZohoRecruit.modules.referral.DELETE"]
  }, {
    "name": "ZohoRecruit.modules.referral.READ",
    "description": "Read-only access to the Referrals module"
  }, {
    "name": "ZohoRecruit.modules.referral.CREATE",
    "description": "Permission to create referral records"
  }, {
    "name": "ZohoRecruit.modules.referral.UPDATE",
    "description": "Permission to update referral records"
  }, {
    "name": "ZohoRecruit.modules.referral.DELETE",
    "description": "Permission to delete referral records"
  }, {
    "name": "ZohoRecruit.users.all",
    "description": "Full access to Zoho Recruit user management for read and update operations"
  }, {
    "name": "ZohoRecruit.org.all",
    "description": "Full access to organization information and settings"
  }, {
    "name": "ZohoRecruit.settings.all",
    "description": "Full access to Zoho Recruit settings including modules, fields, layouts, custom views, roles, and profiles"
  }, {
    "name": "ZohoRecruit.bulk.all",
    "description": "Full access to bulk read and write operations for exporting and importing records at scale",
    "includes": ["ZohoRecruit.bulk.read", "ZohoRecruit.bulk.create"]
  }, {
    "name": "ZohoRecruit.bulk.read",
    "description": "Read-only access to bulk data export operations"
  }, {
    "name": "ZohoRecruit.bulk.create",
    "description": "Permission to create bulk data import and export jobs"
  }, {
    "name": "ZohoRecruit.notifications.read",
    "description": "Read-only access to notification configurations"
  }, {
    "name": "ZohoRecruit.notifications.create",
    "description": "Permission to create notification subscriptions"
  }, {
    "name": "ZohoRecruit.notifications.update",
    "description": "Permission to update notification subscriptions"
  }, {
    "name": "ZohoRecruit.notifications.delete",
    "description": "Permission to delete notification subscriptions"
  }]
};

<ConnectorPage connector={connector} />
