> ## 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.

# Zoom

> 54 actions available for Zoom 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": "zoom",
  "name": "Zoom",
  "icon": "https://stackone-logos.com/api/zoom/filled/png",
  "authentication": [{
    "label": "OAuth 2.0",
    "description": "Login to your Zoom account to connect your data. Admin privileges may be required for certain scopes.",
    "configGuide": "connectors/zoom/guides/link-account/oauth-2-0",
    "setupGuide": "connectors/zoom/guides/auth-config/oauth-2-0"
  }, {
    "label": "Server-to-Server OAuth",
    "description": "Use Server-to-Server OAuth for machine-to-machine authentication without user interaction. Requires a Server-to-Server O...",
    "configGuide": "connectors/zoom/guides/link-account/server-to-server-oauth",
    "setupGuide": "connectors/zoom/guides/auth-config/server-to-server-oauth"
  }],
  "actions": [{
    "id": "zoom_list_meetings",
    "label": "List Meetings",
    "description": "Retrieve all scheduled meetings for a user with pagination and filtering options",
    "requiredScopes": ["meeting:read:list_meetings", "meeting:read:list_meetings:admin"]
  }, {
    "id": "zoom_create_meeting",
    "label": "Create Meeting",
    "description": "Schedule a new meeting with comprehensive configuration options including recurring schedules and advanced settings",
    "requiredScopes": ["meeting:write:meeting", "meeting:write:meeting:admin"]
  }, {
    "id": "zoom_get_meeting",
    "label": "Get Meeting",
    "description": "Get comprehensive details for a specific meeting including settings, participants, and join information",
    "requiredScopes": ["meeting:read:meeting", "meeting:read:meeting:admin"]
  }, {
    "id": "zoom_update_meeting",
    "label": "Update Meeting",
    "description": "Modify scheduled meeting details including time, settings, and recurrence patterns",
    "requiredScopes": ["meeting:update:meeting:admin", "meeting:update:meeting"]
  }, {
    "id": "zoom_delete_meeting",
    "label": "Delete Meeting",
    "description": "Delete a scheduled meeting or specific occurrence of a recurring meeting with optional email notifications",
    "requiredScopes": ["meeting:delete:meeting", "meeting:delete:meeting:admin"]
  }, {
    "id": "zoom_get_past_meeting_participants",
    "label": "Get Past Meeting Participants",
    "description": "Get participant attendance data and metrics from completed meetings for reporting and analytics",
    "requiredScopes": ["meeting:read:list_past_participants", "meeting:read:list_past_participants:admin"]
  }, {
    "id": "zoom_get_past_meeting_details",
    "label": "Get Past Meeting Details",
    "description": "Retrieve historical meeting metadata and summary information for completed meetings",
    "requiredScopes": ["meeting:read:past_meeting", "meeting:read:past_meeting:admin"]
  }, {
    "id": "zoom_list_past_meeting_instances",
    "label": "List Past Meeting Instances",
    "description": "Get a chronological list of all past occurrences for recurring meetings",
    "requiredScopes": ["meeting:read:list_past_instances", "meeting:read:list_past_instances:admin"]
  }, {
    "id": "zoom_list_past_meeting_qa",
    "label": "List Past Meeting Q&A",
    "description": "Retrieve all questions and answers from completed meetings for engagement analysis and follow-up",
    "requiredScopes": ["meeting:read:past_qa", "meeting:read:past_qa:admin"]
  }, {
    "id": "zoom_list_upcoming_meetings",
    "label": "List Upcoming Meetings",
    "description": "Retrieve all future scheduled meetings for a user with pagination support",
    "requiredScopes": ["meeting:read:list_upcoming_meetings", "meeting:read:list_upcoming_meetings:admin"]
  }, {
    "id": "zoom_update_meeting_status",
    "label": "Update Meeting Status",
    "description": "Forcibly end an active meeting programmatically via API",
    "requiredScopes": ["meeting:update:status", "meeting:update:status:admin"]
  }, {
    "id": "zoom_add_meeting_registrant",
    "label": "Add Meeting Registrant",
    "description": "Submit registration for a user to attend a meeting requiring pre-registration",
    "requiredScopes": ["meeting:write:registrant", "meeting:write:registrant:admin"]
  }, {
    "id": "zoom_update_meeting_registrant_status",
    "label": "Update Meeting Registrant Status",
    "description": "Batch approve, deny, or cancel meeting registrations for access control management",
    "requiredScopes": ["meeting:update:registrant_status", "meeting:update:registrant_status:admin"]
  }, {
    "id": "zoom_get_meeting_invitation",
    "label": "Get Meeting Invitation",
    "description": "Retrieve the formatted invitation text for sharing meeting details externally",
    "requiredScopes": ["meeting:read:invitation", "meeting:read:invitation:admin"]
  }, {
    "id": "zoom_list_meeting_polls",
    "label": "List Meeting Polls",
    "description": "Retrieve all polling questions configured for a meeting to gather participant feedback",
    "requiredScopes": ["meeting:read:list_polls", "meeting:read:list_polls:admin"]
  }, {
    "id": "zoom_create_meeting_poll",
    "label": "Create Meeting Poll",
    "description": "Add interactive polls, quizzes, or surveys to meetings for real-time audience engagement",
    "requiredScopes": ["meeting:write:poll", "meeting:write:poll:admin"]
  }, {
    "id": "zoom_list_users",
    "label": "List Users",
    "description": "Retrieve all users in the account with filtering by status, role, and license type for user management",
    "requiredScopes": ["user:read:list_users:admin"]
  }, {
    "id": "zoom_create_user",
    "label": "Create User",
    "description": "Provision a new user account with specified license type and organizational settings",
    "requiredScopes": ["user:write:user:admin"]
  }, {
    "id": "zoom_get_user",
    "label": "Get User",
    "description": "Get comprehensive user profile information including account details, settings, and organizational data",
    "requiredScopes": ["user:read:user", "user:read:user:admin"]
  }, {
    "id": "zoom_update_user",
    "label": "Update User",
    "description": "Modify user profile fields, license assignments, and organizational attributes",
    "requiredScopes": ["user:update:user", "user:update:user:admin"]
  }, {
    "id": "zoom_delete_user",
    "label": "Delete User",
    "description": "Remove a user from the account with options to transfer ownership of meetings, webinars, and content",
    "requiredScopes": ["user:delete:user", "user:delete:user:admin"]
  }, {
    "id": "zoom_get_user_settings",
    "label": "Get User Settings",
    "description": "Get comprehensive user configuration including meeting preferences, recording options, and feature enablements",
    "requiredScopes": ["user:read:settings", "user:read:settings:admin"]
  }, {
    "id": "zoom_update_user_settings",
    "label": "Update User Settings",
    "description": "Modify user configuration across all settings categories for personalization and policy enforcement",
    "requiredScopes": ["user:update:settings", "user:update:settings:admin"]
  }, {
    "id": "zoom_update_user_status",
    "label": "Update User Status",
    "description": "Control user account access and time tracking with activate, deactivate, clock in, and clock out actions",
    "requiredScopes": ["user:update:status", "user:update:status:admin"]
  }, {
    "id": "zoom_check_user_email",
    "label": "Check User Email",
    "description": "Check if an email address is registered in your Zoom account to prevent duplicate accounts",
    "requiredScopes": ["user:read:email", "user:read:email:admin"]
  }, {
    "id": "zoom_get_user_permissions",
    "label": "Get User Permissions",
    "description": "Retrieve all permissions and access rights assigned to a user for authorization and compliance auditing",
    "requiredScopes": ["user:read:list_permissions", "user:read:list_permissions:admin"]
  }, {
    "id": "zoom_list_webinars",
    "label": "List Webinars",
    "description": "Retrieve all scheduled and upcoming webinars for a host with support for large-scale broadcasts",
    "requiredScopes": ["webinar:read:list_webinars", "webinar:read:list_webinars:admin"]
  }, {
    "id": "zoom_create_webinar",
    "label": "Create Webinar",
    "description": "Schedule a broadcast webinar with registration, panelists, and interactive features for large audiences",
    "requiredScopes": ["webinar:write:webinar", "webinar:write:webinar:admin"]
  }, {
    "id": "zoom_get_webinar",
    "label": "Get Webinar",
    "description": "Get comprehensive webinar configuration including registration settings, panelist details, and join URLs",
    "requiredScopes": ["webinar:read:webinar", "webinar:read:webinar:admin"]
  }, {
    "id": "zoom_update_webinar",
    "label": "Update Webinar",
    "description": "Modify webinar configuration including schedule, settings, and recurring series with rate limiting",
    "requiredScopes": ["webinar:update:webinar", "webinar:update:webinar:admin"]
  }, {
    "id": "zoom_delete_webinar",
    "label": "Delete Webinar",
    "description": "Remove a webinar with optional cancellation notifications to panelists and registrants",
    "requiredScopes": ["webinar:delete:webinar", "webinar:delete:webinar:admin"]
  }, {
    "id": "zoom_list_webinar_registrants",
    "label": "List Webinar Registrants",
    "description": "Retrieve all webinar registrants with filtering by status and tracking source for registration management",
    "requiredScopes": ["webinar:read:list_registrants", "webinar:read:list_registrants:admin"]
  }, {
    "id": "zoom_add_webinar_registrant",
    "label": "Add Webinar Registrant",
    "description": "Submit webinar registration with contact details and custom questions for large-scale events",
    "requiredScopes": ["webinar:write:registrant", "webinar:write:registrant:admin"]
  }, {
    "id": "zoom_list_past_webinar_participants",
    "label": "List Past Webinar Participants",
    "description": "Get detailed attendee participation data from completed webinars for engagement analytics",
    "requiredScopes": ["webinar:read:list_past_instances", "webinar:read:list_past_instances:admin"]
  }, {
    "id": "zoom_list_past_webinar_qa",
    "label": "List Past Webinar Q&A",
    "description": "Retrieve all questions and answers from webinars for engagement analysis and content creation",
    "requiredScopes": ["webinar:read:past_qa", "webinar:read:past_qa:admin"]
  }, {
    "id": "zoom_list_user_channels",
    "label": "List User Channels",
    "description": "Retrieve all Team Chat channels a user belongs to for channel management and navigation",
    "requiredScopes": ["team_chat:read:list_user_channels", "team_chat:read:list_user_channels:admin"]
  }, {
    "id": "zoom_create_channel",
    "label": "Create Channel",
    "description": "Create private or public Team Chat channels with customizable permissions and member management",
    "requiredScopes": ["team_chat:write:user_channel", "team_chat:write:user_channel:admin"]
  }, {
    "id": "zoom_get_channel",
    "label": "Get Channel",
    "description": "Get comprehensive channel information including settings, membership, and metadata",
    "requiredScopes": ["team_chat:read:channel", "team_chat:read:channel:admin"]
  }, {
    "id": "zoom_delete_channel",
    "label": "Delete Channel",
    "description": "Permanently remove a Team Chat channel and all its message history",
    "requiredScopes": ["team_chat:delete:channel", "team_chat:delete:channel:admin"]
  }, {
    "id": "zoom_list_channel_members",
    "label": "List Channel Members",
    "description": "Get all channel members with their roles and contact information for membership management",
    "requiredScopes": ["team_chat:read:list_members", "team_chat:read:list_members:admin"]
  }, {
    "id": "zoom_invite_channel_members",
    "label": "Invite Channel Members",
    "description": "Invite up to five members to a channel in a single batch operation",
    "requiredScopes": ["team_chat:write:members", "team_chat:write:members:admin"]
  }, {
    "id": "zoom_remove_channel_members",
    "label": "Remove Channel Members",
    "description": "Batch remove up to 20 members from a channel for efficient membership management",
    "requiredScopes": ["team_chat:delete:member", "team_chat:delete:member:admin"]
  }, {
    "id": "zoom_list_user_chat_messages",
    "label": "List User Chat Messages",
    "description": "Retrieve chat message history with filtering, search, and pagination for conversations and channels",
    "requiredScopes": ["team_chat:read:list_user_messages", "team_chat:read:list_user_messages:admin"]
  }, {
    "id": "zoom_send_chat_message",
    "label": "Send Chat Message",
    "description": "Send rich text messages with mentions, files, interactive cards, and scheduling to contacts or channels",
    "requiredScopes": ["team_chat:write:user_message", "team_chat:write:user_message:admin"]
  }, {
    "id": "zoom_update_chat_message",
    "label": "Update Chat Message",
    "description": "Modify previously sent message content, files, and interactive cards with edit history tracking",
    "requiredScopes": ["team_chat:update:user_message", "team_chat:update:user_message:admin"]
  }, {
    "id": "zoom_delete_chat_message",
    "label": "Delete Chat Message",
    "description": "Remove previously sent messages from conversations or channels with sender-only permissions",
    "requiredScopes": ["team_chat:delete:user_message", "team_chat:delete:user_message:admin"]
  }, {
    "id": "zoom_list_groups",
    "label": "List Groups",
    "description": "Retrieve all user groups in the account for organizational management and bulk operations",
    "requiredScopes": ["group:read:list_groups:admin"]
  }, {
    "id": "zoom_create_group",
    "label": "Create Group",
    "description": "Create a new user group for organizing users and applying bulk settings with rate limits",
    "requiredScopes": ["group:write:group:admin"]
  }, {
    "id": "zoom_get_group",
    "label": "Get Group",
    "description": "Get group information including name and membership statistics for management and reporting",
    "requiredScopes": ["group:read:group:admin"]
  }, {
    "id": "zoom_delete_group",
    "label": "Delete Group",
    "description": "Permanently remove a user group while preserving individual user accounts",
    "requiredScopes": ["group:delete:group:admin"]
  }, {
    "id": "zoom_list_group_members",
    "label": "List Group Members",
    "description": "Get all group members with user details for membership management and reporting",
    "requiredScopes": ["group:read:list_members:admin"]
  }, {
    "id": "zoom_add_group_members",
    "label": "Add Group Members",
    "description": "Batch add up to 30 users to a group using IDs or email addresses for efficient provisioning",
    "requiredScopes": ["group:write:member:admin"]
  }, {
    "id": "zoom_delete_group_member",
    "label": "Delete Group Member",
    "description": "Remove a single user from a group while preserving their account and settings",
    "requiredScopes": ["group:delete:member:admin"]
  }, {
    "id": "zoom_update_group",
    "label": "Update Group",
    "description": "Rename a group to reflect organizational changes while preserving members and settings",
    "requiredScopes": ["group:update:group:admin"]
  }],
  "releaseStage": "preview",
  "categories": ["messaging"],
  "scopeDefinitions": [{
    "name": "meeting:read:list_meetings",
    "description": "List meetings for current user"
  }, {
    "name": "meeting:read:list_meetings:admin",
    "description": "List meetings for any user in the account",
    "includes": ["meeting:read:list_meetings"]
  }, {
    "name": "meeting:write:meeting",
    "description": "Create meetings for current user"
  }, {
    "name": "meeting:write:meeting:admin",
    "description": "Create meetings for any user in the account",
    "includes": ["meeting:write:meeting"]
  }, {
    "name": "meeting:read:meeting",
    "description": "View meeting details for current user"
  }, {
    "name": "meeting:read:meeting:admin",
    "description": "View meeting details for any user in the account",
    "includes": ["meeting:read:meeting"]
  }, {
    "name": "meeting:update:meeting",
    "description": "Update meetings for current user"
  }, {
    "name": "meeting:update:meeting:admin",
    "description": "Update meetings for any user in the account",
    "includes": ["meeting:update:meeting"]
  }, {
    "name": "meeting:delete:meeting",
    "description": "Delete meetings for current user"
  }, {
    "name": "meeting:delete:meeting:admin",
    "description": "Delete meetings for any user in the account",
    "includes": ["meeting:delete:meeting"]
  }, {
    "name": "meeting:read:list_past_participants",
    "description": "List past meeting participants for current user"
  }, {
    "name": "meeting:read:list_past_participants:admin",
    "description": "List past meeting participants for any user in the account",
    "includes": ["meeting:read:list_past_participants"]
  }, {
    "name": "meeting:read:past_meeting",
    "description": "View past meeting details for current user"
  }, {
    "name": "meeting:read:past_meeting:admin",
    "description": "View past meeting details for any user in the account",
    "includes": ["meeting:read:past_meeting"]
  }, {
    "name": "meeting:read:list_past_instances",
    "description": "List past meeting instances for current user"
  }, {
    "name": "meeting:read:list_past_instances:admin",
    "description": "List past meeting instances for any user in the account",
    "includes": ["meeting:read:list_past_instances"]
  }, {
    "name": "meeting:read:past_qa",
    "description": "View past meeting Q&A for current user"
  }, {
    "name": "meeting:read:past_qa:admin",
    "description": "View past meeting Q&A for any user in the account",
    "includes": ["meeting:read:past_qa"]
  }, {
    "name": "meeting:read:list_upcoming_meetings",
    "description": "List upcoming meetings for current user"
  }, {
    "name": "meeting:read:list_upcoming_meetings:admin",
    "description": "List upcoming meetings for any user in the account",
    "includes": ["meeting:read:list_upcoming_meetings"]
  }, {
    "name": "meeting:update:status",
    "description": "Update meeting status for current user"
  }, {
    "name": "meeting:update:status:admin",
    "description": "Update meeting status for any user in the account",
    "includes": ["meeting:update:status"]
  }, {
    "name": "meeting:write:registrant",
    "description": "Add meeting registrants for current user"
  }, {
    "name": "meeting:write:registrant:admin",
    "description": "Add meeting registrants for any user in the account",
    "includes": ["meeting:write:registrant"]
  }, {
    "name": "meeting:update:registrant_status",
    "description": "Update meeting registrant status for current user"
  }, {
    "name": "meeting:update:registrant_status:admin",
    "description": "Update meeting registrant status for any user in the account",
    "includes": ["meeting:update:registrant_status"]
  }, {
    "name": "meeting:read:invitation",
    "description": "View meeting invitation for current user"
  }, {
    "name": "meeting:read:invitation:admin",
    "description": "View meeting invitation for any user in the account",
    "includes": ["meeting:read:invitation"]
  }, {
    "name": "meeting:read:list_polls",
    "description": "List meeting polls for current user"
  }, {
    "name": "meeting:read:list_polls:admin",
    "description": "List meeting polls for any user in the account",
    "includes": ["meeting:read:list_polls"]
  }, {
    "name": "meeting:write:poll",
    "description": "Create meeting polls for current user"
  }, {
    "name": "meeting:write:poll:admin",
    "description": "Create meeting polls for any user in the account",
    "includes": ["meeting:write:poll"]
  }, {
    "name": "user:read:list_users:admin",
    "description": "List all users in the account"
  }, {
    "name": "user:write:user:admin",
    "description": "Create users in the account"
  }, {
    "name": "user:read:user",
    "description": "View current user information"
  }, {
    "name": "user:read:user:admin",
    "description": "View any user information in the account",
    "includes": ["user:read:user"]
  }, {
    "name": "user:update:user",
    "description": "Update current user information"
  }, {
    "name": "user:update:user:admin",
    "description": "Update any user information in the account",
    "includes": ["user:update:user"]
  }, {
    "name": "user:delete:user",
    "description": "Delete current user"
  }, {
    "name": "user:delete:user:admin",
    "description": "Delete any user in the account",
    "includes": ["user:delete:user"]
  }, {
    "name": "user:read:settings",
    "description": "View current user settings"
  }, {
    "name": "user:read:settings:admin",
    "description": "View any user settings in the account",
    "includes": ["user:read:settings"]
  }, {
    "name": "user:update:settings",
    "description": "Update current user settings"
  }, {
    "name": "user:update:settings:admin",
    "description": "Update any user settings in the account",
    "includes": ["user:update:settings"]
  }, {
    "name": "user:update:status",
    "description": "Update current user status"
  }, {
    "name": "user:update:status:admin",
    "description": "Update any user status in the account",
    "includes": ["user:update:status"]
  }, {
    "name": "user:read:email",
    "description": "Check user email for current user"
  }, {
    "name": "user:read:email:admin",
    "description": "Check any user email in the account",
    "includes": ["user:read:email"]
  }, {
    "name": "user:read:list_permissions",
    "description": "View current user permissions"
  }, {
    "name": "user:read:list_permissions:admin",
    "description": "View any user permissions in the account",
    "includes": ["user:read:list_permissions"]
  }, {
    "name": "webinar:read:list_webinars",
    "description": "List webinars for current user"
  }, {
    "name": "webinar:read:list_webinars:admin",
    "description": "List webinars for any user in the account",
    "includes": ["webinar:read:list_webinars"]
  }, {
    "name": "webinar:write:webinar",
    "description": "Create webinars for current user"
  }, {
    "name": "webinar:write:webinar:admin",
    "description": "Create webinars for any user in the account",
    "includes": ["webinar:write:webinar"]
  }, {
    "name": "webinar:read:webinar",
    "description": "View webinar details for current user"
  }, {
    "name": "webinar:read:webinar:admin",
    "description": "View webinar details for any user in the account",
    "includes": ["webinar:read:webinar"]
  }, {
    "name": "webinar:update:webinar",
    "description": "Update webinars for current user"
  }, {
    "name": "webinar:update:webinar:admin",
    "description": "Update webinars for any user in the account",
    "includes": ["webinar:update:webinar"]
  }, {
    "name": "webinar:delete:webinar",
    "description": "Delete webinars for current user"
  }, {
    "name": "webinar:delete:webinar:admin",
    "description": "Delete webinars for any user in the account",
    "includes": ["webinar:delete:webinar"]
  }, {
    "name": "webinar:read:list_registrants",
    "description": "List webinar registrants for current user"
  }, {
    "name": "webinar:read:list_registrants:admin",
    "description": "List webinar registrants for any user in the account",
    "includes": ["webinar:read:list_registrants"]
  }, {
    "name": "webinar:write:registrant",
    "description": "Add webinar registrants for current user"
  }, {
    "name": "webinar:write:registrant:admin",
    "description": "Add webinar registrants for any user in the account",
    "includes": ["webinar:write:registrant"]
  }, {
    "name": "webinar:read:list_past_instances",
    "description": "List past webinar instances for current user"
  }, {
    "name": "webinar:read:list_past_instances:admin",
    "description": "List past webinar instances for any user in the account",
    "includes": ["webinar:read:list_past_instances"]
  }, {
    "name": "webinar:read:past_qa",
    "description": "View past webinar Q&A for current user"
  }, {
    "name": "webinar:read:past_qa:admin",
    "description": "View past webinar Q&A for any user in the account",
    "includes": ["webinar:read:past_qa"]
  }, {
    "name": "team_chat:read:list_user_channels",
    "description": "List chat channels for current user"
  }, {
    "name": "team_chat:read:list_user_channels:admin",
    "description": "List chat channels for any user in the account",
    "includes": ["team_chat:read:list_user_channels"]
  }, {
    "name": "team_chat:write:user_channel",
    "description": "Create chat channels for current user"
  }, {
    "name": "team_chat:write:user_channel:admin",
    "description": "Create chat channels for any user in the account",
    "includes": ["team_chat:write:user_channel"]
  }, {
    "name": "team_chat:read:channel",
    "description": "View chat channel details for current user"
  }, {
    "name": "team_chat:read:channel:admin",
    "description": "View chat channel details for any user in the account",
    "includes": ["team_chat:read:channel"]
  }, {
    "name": "team_chat:delete:channel",
    "description": "Delete chat channels for current user"
  }, {
    "name": "team_chat:delete:channel:admin",
    "description": "Delete chat channels for any user in the account",
    "includes": ["team_chat:delete:channel"]
  }, {
    "name": "team_chat:read:list_members",
    "description": "List channel members for current user"
  }, {
    "name": "team_chat:read:list_members:admin",
    "description": "List channel members for any user in the account",
    "includes": ["team_chat:read:list_members"]
  }, {
    "name": "team_chat:write:members",
    "description": "Add channel members for current user"
  }, {
    "name": "team_chat:write:members:admin",
    "description": "Add channel members for any user in the account",
    "includes": ["team_chat:write:members"]
  }, {
    "name": "team_chat:delete:member",
    "description": "Remove channel members for current user"
  }, {
    "name": "team_chat:delete:member:admin",
    "description": "Remove channel members for any user in the account",
    "includes": ["team_chat:delete:member"]
  }, {
    "name": "team_chat:read:list_user_messages",
    "description": "List chat messages for current user"
  }, {
    "name": "team_chat:read:list_user_messages:admin",
    "description": "List chat messages for any user in the account",
    "includes": ["team_chat:read:list_user_messages"]
  }, {
    "name": "team_chat:write:user_message",
    "description": "Send chat messages for current user"
  }, {
    "name": "team_chat:write:user_message:admin",
    "description": "Send chat messages for any user in the account",
    "includes": ["team_chat:write:user_message"]
  }, {
    "name": "team_chat:update:user_message",
    "description": "Update chat messages for current user"
  }, {
    "name": "team_chat:update:user_message:admin",
    "description": "Update chat messages for any user in the account",
    "includes": ["team_chat:update:user_message"]
  }, {
    "name": "team_chat:delete:user_message",
    "description": "Delete chat messages for current user"
  }, {
    "name": "team_chat:delete:user_message:admin",
    "description": "Delete chat messages for any user in the account",
    "includes": ["team_chat:delete:user_message"]
  }, {
    "name": "group:read:list_groups:admin",
    "description": "List all groups in the account"
  }, {
    "name": "group:write:group:admin",
    "description": "Create groups in the account"
  }, {
    "name": "group:read:group:admin",
    "description": "View group details in the account"
  }, {
    "name": "group:delete:group:admin",
    "description": "Delete groups in the account"
  }, {
    "name": "group:read:list_members:admin",
    "description": "List group members in the account"
  }, {
    "name": "group:write:member:admin",
    "description": "Add group members in the account"
  }, {
    "name": "group:delete:member:admin",
    "description": "Remove group members in the account"
  }, {
    "name": "group:update:group:admin",
    "description": "Update groups in the account"
  }]
};

<ConnectorPage connector={connector} />
