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

# Webex

> 100 actions available for Webex 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": "webex",
  "name": "Webex",
  "icon": "https://stackone-logos.com/api/webex/filled/png",
  "authentication": [{
    "label": "OAuth 2.0",
    "description": "Login to your Webex account to connect your data.",
    "configGuide": "connectors/webex/guides/link-account/oauth-2-0",
    "setupGuide": "connectors/webex/guides/auth-config/oauth-2-0"
  }],
  "actions": [{
    "id": "webex_list_admin_audit_events",
    "label": "List Admin Audit Events",
    "description": "List admin audit events in your organization with filtering options",
    "requiredScopes": ["audit:events_read"]
  }, {
    "id": "webex_list_recordings_admin",
    "label": "List Recordings (Admin/Compliance Officer)",
    "description": "List all recordings in organization with filtering options (admin or compliance officer only)",
    "requiredScopes": ["spark-admin:recordings_read"]
  }, {
    "id": "webex_delete_recording_admin",
    "label": "Delete Recording (Admin)",
    "description": "Permanently delete a recording by ID (admin only, cannot be recovered)",
    "requiredScopes": ["spark-admin:recordings_write"]
  }, {
    "id": "webex_get_attachment_action_details",
    "label": "Get Attachment Action Details",
    "description": "Shows details for an attachment action by ID",
    "requiredScopes": ["spark:messages_read"]
  }, {
    "id": "webex_create_attachment_action",
    "label": "Create Attachment Action",
    "description": "Create a new attachment action",
    "requiredScopes": ["spark:messages_write"]
  }, {
    "id": "webex_list_compliance_events",
    "label": "List Compliance Events (Slido Secure Premium)",
    "description": "List events from a Slido Secure Premium session (polls, answers, Q&A actions)",
    "requiredScopes": ["spark-compliance:events_read"]
  }, {
    "id": "webex_list_hybrid_clusters",
    "label": "List Hybrid Clusters",
    "description": "List hybrid clusters for an organization (requires administrator privileges)",
    "requiredScopes": ["spark-admin:hybrid_clusters_read"]
  }, {
    "id": "webex_get_hybrid_cluster_details",
    "label": "Get Hybrid Cluster Details",
    "description": "Shows details for a hybrid cluster by ID",
    "requiredScopes": ["spark-admin:hybrid_clusters_read"]
  }, {
    "id": "webex_list_hybrid_connectors",
    "label": "List Hybrid Connectors",
    "description": "List hybrid connectors for an organization (requires administrator privileges)",
    "requiredScopes": ["spark-admin:hybrid_connectors_read"]
  }, {
    "id": "webex_get_hybrid_connector_details",
    "label": "Get Hybrid Connector Details",
    "description": "Shows details for a hybrid connector by ID",
    "requiredScopes": ["spark-admin:hybrid_connectors_read"]
  }, {
    "id": "webex_list_locations",
    "label": "List Locations",
    "description": "List locations for an organization (requires administrator privileges)",
    "requiredScopes": ["spark-admin:locations_read"]
  }, {
    "id": "webex_get_location_details",
    "label": "Get Location Details",
    "description": "Shows details for a location by ID",
    "requiredScopes": ["spark-admin:locations_read"]
  }, {
    "id": "webex_create_location",
    "label": "Create Location",
    "description": "Create a new location for a given organization",
    "requiredScopes": ["spark-admin:locations_write"]
  }, {
    "id": "webex_update_location",
    "label": "Update Location",
    "description": "Update details for a location by ID",
    "requiredScopes": ["spark-admin:locations_write"]
  }, {
    "id": "webex_list_meeting_participants",
    "label": "List Meeting Participants",
    "description": "List all participants in an in-progress meeting or an ended meeting",
    "requiredScopes": ["meeting:participants_read"]
  }, {
    "id": "webex_get_meeting_participant_details",
    "label": "Get Meeting Participant Details",
    "description": "Get a meeting participant details of a live or post meeting",
    "requiredScopes": ["meeting:participants_read"]
  }, {
    "id": "webex_update_meeting_participant",
    "label": "Update Meeting Participant",
    "description": "Mute, un-mute, expel, or admit a participant in a live meeting",
    "requiredScopes": ["meeting:participants_write"]
  }, {
    "id": "webex_get_meeting_preferences",
    "label": "Get Meeting Preferences",
    "description": "Retrieves meeting preferences for the authenticated user",
    "requiredScopes": ["meeting:preferences_read"]
  }, {
    "id": "webex_get_personal_meeting_room_options",
    "label": "Get Personal Meeting Room Options",
    "description": "Retrieves the Personal Meeting Room options for the authenticated user",
    "requiredScopes": ["meeting:preferences_read"]
  }, {
    "id": "webex_update_personal_meeting_room_options",
    "label": "Update Personal Meeting Room Options",
    "description": "Updates Personal Meeting Room options for the authenticated user",
    "requiredScopes": ["meeting:preferences_write"]
  }, {
    "id": "webex_get_scheduling_options",
    "label": "Get Scheduling Options",
    "description": "Retrieves scheduling options for the authenticated user",
    "requiredScopes": ["meeting:preferences_read"]
  }, {
    "id": "webex_get_meeting_qualities",
    "label": "Get Meeting Qualities",
    "description": "Get quality data for a meeting by meetingId (Admin only)",
    "requiredScopes": ["analytics:read_all"]
  }, {
    "id": "webex_list_meeting_invitees",
    "label": "List Meeting Invitees",
    "description": "List invitees for a specific meeting",
    "requiredScopes": ["meeting:schedules_read"]
  }, {
    "id": "webex_get_meeting_invitee",
    "label": "Get Meeting Invitee",
    "description": "Retrieve details for a meeting invitee by ID",
    "requiredScopes": ["meeting:schedules_read"]
  }, {
    "id": "webex_create_meeting_invitee",
    "label": "Create Meeting Invitee",
    "description": "Add an invitee to a scheduled meeting",
    "requiredScopes": ["meeting:schedules_write"]
  }, {
    "id": "webex_update_meeting_invitee",
    "label": "Update Meeting Invitee",
    "description": "Update details for a meeting invitee by ID",
    "requiredScopes": ["meeting:schedules_write"]
  }, {
    "id": "webex_delete_meeting_invitee",
    "label": "Delete Meeting Invitee",
    "description": "Remove a meeting invitee by ID",
    "requiredScopes": ["meeting:schedules_write"]
  }, {
    "id": "webex_list_meeting_sites",
    "label": "List Meeting Sites",
    "description": "Retrieve the list of Webex sites that the authenticated user is set up to use",
    "requiredScopes": ["meeting:admin_config_read"]
  }, {
    "id": "webex_list_meeting_transcripts",
    "label": "List Meeting Transcripts",
    "description": "Lists available transcripts of an ended meeting instance",
    "requiredScopes": ["meeting:transcripts_read"]
  }, {
    "id": "webex_download_meeting_transcript",
    "label": "Download Meeting Transcript",
    "description": "Download a meeting transcript from the meeting transcript specified by transcriptId",
    "requiredScopes": ["meeting:transcripts_read"]
  }, {
    "id": "webex_list_transcript_snippets",
    "label": "List Transcript Snippets",
    "description": "Lists snippets of a meeting transcript specified by transcriptId",
    "requiredScopes": ["meeting:transcripts_read"]
  }, {
    "id": "webex_list_meetings",
    "label": "List Meetings",
    "description": "Retrieves details for meetings with filtering options (meeting number, web link, meeting type, etc.)",
    "requiredScopes": ["meeting:schedules_read"]
  }, {
    "id": "webex_get_meeting_details",
    "label": "Get Meeting Details",
    "description": "Retrieves details for a meeting with a specified meeting ID",
    "requiredScopes": ["meeting:schedules_read"]
  }, {
    "id": "webex_create_meeting",
    "label": "Create Meeting",
    "description": "Schedule a new meeting, webinar, or personal room meeting with comprehensive configuration options",
    "requiredScopes": ["meeting:schedules_write"]
  }, {
    "id": "webex_update_meeting",
    "label": "Update Meeting",
    "description": "Update an existing meeting, webinar, or meeting series with modified configuration settings",
    "requiredScopes": ["meeting:schedules_write"]
  }, {
    "id": "webex_delete_meeting",
    "label": "Delete Meeting",
    "description": "Cancel a scheduled meeting",
    "requiredScopes": ["meeting:schedules_write"]
  }, {
    "id": "webex_list_recordings",
    "label": "List Recordings",
    "description": "List recordings for meetings",
    "requiredScopes": ["spark:recordings_read"]
  }, {
    "id": "webex_get_recording_details",
    "label": "Get Recording Details",
    "description": "Get details of a specific recording",
    "requiredScopes": ["spark:recordings_read"]
  }, {
    "id": "webex_delete_recording",
    "label": "Delete Recording",
    "description": "Delete a meeting recording",
    "requiredScopes": ["spark:recordings_write"]
  }, {
    "id": "webex_list_memberships",
    "label": "List Memberships",
    "description": "List all room memberships with filtering options for rooms and persons",
    "requiredScopes": ["spark:memberships_read"]
  }, {
    "id": "webex_get_membership_details",
    "label": "Get Membership Details",
    "description": "Get details of a specific membership by ID",
    "requiredScopes": ["spark:memberships_read"]
  }, {
    "id": "webex_create_membership",
    "label": "Create Membership",
    "description": "Add someone to a room by Person ID or email address, optionally making them a moderator",
    "requiredScopes": ["spark:memberships_write"]
  }, {
    "id": "webex_update_membership",
    "label": "Update Membership",
    "description": "Update membership properties including moderator status and room visibility",
    "requiredScopes": ["spark:memberships_write"]
  }, {
    "id": "webex_delete_membership",
    "label": "Delete Membership",
    "description": "Deletes a membership by ID to remove a person from a room",
    "requiredScopes": ["spark:memberships_write"]
  }, {
    "id": "webex_list_team_memberships",
    "label": "List Team Memberships",
    "description": "Lists all team memberships for a given team",
    "requiredScopes": ["spark:team_memberships_read"]
  }, {
    "id": "webex_get_team_membership_details",
    "label": "Get Team Membership Details",
    "description": "Shows details for a team membership, by ID",
    "requiredScopes": ["spark:team_memberships_read"]
  }, {
    "id": "webex_create_team_membership",
    "label": "Create Team Membership",
    "description": "Add someone to a team by Person ID or email address, optionally making them a moderator",
    "requiredScopes": ["spark:team_memberships_write"]
  }, {
    "id": "webex_update_team_membership",
    "label": "Update Team Membership",
    "description": "Updates a team membership, by ID",
    "requiredScopes": ["spark:team_memberships_write"]
  }, {
    "id": "webex_delete_team_membership",
    "label": "Delete Team Membership",
    "description": "Deletes a team membership, by ID",
    "requiredScopes": ["spark:team_memberships_write"]
  }, {
    "id": "webex_list_messages",
    "label": "List Messages",
    "description": "Lists all messages in a room with content attachments if present",
    "requiredScopes": ["spark:messages_read"]
  }, {
    "id": "webex_get_message_details",
    "label": "Get Message Details",
    "description": "Show details for a message, by message ID",
    "requiredScopes": ["spark:messages_read"]
  }, {
    "id": "webex_create_message",
    "label": "Create Message",
    "description": "Post a plain text or rich text message, and optionally, a file attachment, to a room",
    "requiredScopes": ["spark:messages_write"]
  }, {
    "id": "webex_update_message",
    "label": "Update Message",
    "description": "Edit a message you have posted not more than 10 times",
    "requiredScopes": ["spark:messages_write"]
  }, {
    "id": "webex_delete_message",
    "label": "Delete Message",
    "description": "Delete a message, by message ID",
    "requiredScopes": ["spark:messages_write"]
  }, {
    "id": "webex_list_organizations",
    "label": "List Organizations",
    "description": "List all organizations visible by your account",
    "requiredScopes": ["spark:organizations_read"]
  }, {
    "id": "webex_get_organization_details",
    "label": "Get Organization Details",
    "description": "Shows details for an organization, by ID",
    "requiredScopes": ["spark:organizations_read"]
  }, {
    "id": "webex_list_licenses",
    "label": "List Licenses",
    "description": "List all licenses for a given organization",
    "requiredScopes": ["spark-admin:licenses_read"]
  }, {
    "id": "webex_get_license_details",
    "label": "Get License Details",
    "description": "Shows details for a license, by ID",
    "requiredScopes": ["spark-admin:licenses_read"]
  }, {
    "id": "webex_list_roles",
    "label": "List Roles",
    "description": "List all roles",
    "requiredScopes": ["spark-admin:roles_read"]
  }, {
    "id": "webex_get_role_details",
    "label": "Get Role Details",
    "description": "Shows details for a role, by ID",
    "requiredScopes": ["spark-admin:roles_read"]
  }, {
    "id": "webex_list_events",
    "label": "List Events",
    "description": "List events in your organization with filtering options",
    "requiredScopes": ["spark-admin:organizations_read"]
  }, {
    "id": "webex_get_event_details",
    "label": "Get Event Details",
    "description": "Shows details for an event, by event ID",
    "requiredScopes": ["spark-admin:organizations_read"]
  }, {
    "id": "webex_list_devices",
    "label": "List Devices",
    "description": "List devices (Webex room devices, phones) in organization",
    "requiredScopes": ["spark-admin:devices_read"]
  }, {
    "id": "webex_get_device_details",
    "label": "Get Device Details",
    "description": "Shows details for a device, by ID",
    "requiredScopes": ["spark-admin:devices_read"]
  }, {
    "id": "webex_list_people",
    "label": "List People",
    "description": "List people in your organization. For non-admin users, at least one filter parameter (email, displayName, roles, or id)...",
    "requiredScopes": ["spark:people_read"]
  }, {
    "id": "webex_get_person_details",
    "label": "Get Person Details",
    "description": "Shows details for a person, by ID",
    "requiredScopes": ["spark:people_read"]
  }, {
    "id": "webex_get_my_details",
    "label": "Get My Details",
    "description": "Get profile details for the authenticated user",
    "requiredScopes": ["spark:people_read"]
  }, {
    "id": "webex_create_person",
    "label": "Create Person",
    "description": "Create a new user account for a given organization (only an admin can create a new user account)",
    "requiredScopes": ["spark-admin:people_write"]
  }, {
    "id": "webex_update_person",
    "label": "Update Person",
    "description": "Full update of a person's details by ID (only admin can update person details - requires all user fields to prevent data...",
    "requiredScopes": ["spark-admin:people_write"]
  }, {
    "id": "webex_delete_person",
    "label": "Delete Person",
    "description": "Remove a person from the system",
    "requiredScopes": ["spark-admin:people_write"]
  }, {
    "id": "webex_list_report_templates",
    "label": "List Report Templates",
    "description": "List all the available report templates that can be generated",
    "requiredScopes": ["spark-admin:reports_read"]
  }, {
    "id": "webex_list_reports",
    "label": "List Reports",
    "description": "Lists all reports with optional query parameters for filtering",
    "requiredScopes": ["spark-admin:reports_read"]
  }, {
    "id": "webex_get_report_details",
    "label": "Get Report Details",
    "description": "Shows details for a report, by report ID",
    "requiredScopes": ["spark-admin:reports_read"]
  }, {
    "id": "webex_create_report",
    "label": "Create Report",
    "description": "Create a new report from a template",
    "requiredScopes": ["spark-admin:reports_write"]
  }, {
    "id": "webex_delete_report",
    "label": "Delete Report",
    "description": "Remove a report from the system",
    "requiredScopes": ["spark-admin:reports_write"]
  }, {
    "id": "webex_list_resource_groups",
    "label": "List Resource Groups",
    "description": "List resource groups with optional query parameters for filtering (requires administrator privileges)",
    "requiredScopes": ["spark-admin:resource_groups_read"]
  }, {
    "id": "webex_get_resource_group_details",
    "label": "Get Resource Group Details",
    "description": "Shows details for a resource group, by ID",
    "requiredScopes": ["spark-admin:resource_groups_read"]
  }, {
    "id": "webex_list_resource_group_memberships",
    "label": "List Resource Group Memberships",
    "description": "Lists all resource group memberships for an organization",
    "requiredScopes": ["spark-admin:resource_group_memberships_read"]
  }, {
    "id": "webex_get_resource_group_membership_details",
    "label": "Get Resource Group Membership Details",
    "description": "Shows details for a resource group membership, by ID",
    "requiredScopes": ["spark-admin:resource_group_memberships_read"]
  }, {
    "id": "webex_update_resource_group_membership",
    "label": "Update Resource Group Membership",
    "description": "Updates a resource group membership by ID",
    "requiredScopes": ["spark-admin:resource_group_memberships_write"]
  }, {
    "id": "webex_list_rooms",
    "label": "List Rooms",
    "description": "List rooms to which the authenticated user belongs to",
    "requiredScopes": ["spark:rooms_read"]
  }, {
    "id": "webex_get_room_details",
    "label": "Get Room Details",
    "description": "Shows details for a room, by ID",
    "requiredScopes": ["spark:rooms_read"]
  }, {
    "id": "webex_create_room",
    "label": "Create Room",
    "description": "Creates a room (authenticated user is automatically added as a member)",
    "requiredScopes": ["spark:rooms_write"]
  }, {
    "id": "webex_update_room",
    "label": "Update Room",
    "description": "Updates details for a room, by ID",
    "requiredScopes": ["spark:rooms_write"]
  }, {
    "id": "webex_delete_room",
    "label": "Delete Room",
    "description": "Deletes a room, by ID (deleted rooms cannot be recovered)",
    "requiredScopes": ["spark:rooms_write"]
  }, {
    "id": "webex_list_teams",
    "label": "List Teams",
    "description": "Lists teams to which the authenticated user belongs",
    "requiredScopes": ["spark:teams_read"]
  }, {
    "id": "webex_get_team_details",
    "label": "Get Team Details",
    "description": "Shows details for a team, by ID",
    "requiredScopes": ["spark:teams_read"]
  }, {
    "id": "webex_create_team",
    "label": "Create Team",
    "description": "Creates a team (authenticated user is automatically added as a member)",
    "requiredScopes": ["spark:teams_write"]
  }, {
    "id": "webex_update_team",
    "label": "Update Team",
    "description": "Updates details for a team, by ID",
    "requiredScopes": ["spark:teams_write"]
  }, {
    "id": "webex_delete_team",
    "label": "Delete Team",
    "description": "Deletes a team, by ID",
    "requiredScopes": ["spark:teams_write"]
  }, {
    "id": "webex_list_workspaces",
    "label": "List Workspaces",
    "description": "List workspaces with extensive filtering options (requires administrator privileges)",
    "requiredScopes": ["spark-admin:workspaces_read"]
  }, {
    "id": "webex_get_workspace_details",
    "label": "Get Workspace Details",
    "description": "Shows details for a workspace, by ID",
    "requiredScopes": ["spark-admin:workspaces_read"]
  }, {
    "id": "webex_create_workspace",
    "label": "Create Workspace",
    "description": "Create a new workspace",
    "requiredScopes": ["spark-admin:workspaces_write", "spark-admin:telephony_config_write"]
  }, {
    "id": "webex_update_workspace",
    "label": "Update Workspace",
    "description": "Update details for a workspace by ID",
    "requiredScopes": ["spark-admin:workspaces_write", "spark-admin:telephony_config_write"]
  }, {
    "id": "webex_delete_workspace",
    "label": "Delete Workspace",
    "description": "Deletes a workspace by ID",
    "requiredScopes": ["spark-admin:workspaces_write", "spark-admin:telephony_config_write"]
  }, {
    "id": "webex_list_webhooks",
    "label": "List Webhooks",
    "description": "List all of your webhooks",
    "requiredScopes": ["application:webhooks_read"]
  }, {
    "id": "webex_get_webhook_details",
    "label": "Get Webhook Details",
    "description": "Shows details for a webhook, by ID",
    "requiredScopes": ["application:webhooks_read"]
  }, {
    "id": "webex_create_webhook",
    "label": "Create Webhook",
    "description": "Creates a webhook",
    "requiredScopes": ["application:webhooks_write"]
  }, {
    "id": "webex_update_webhook",
    "label": "Update Webhook",
    "description": "Updates a webhook, by ID",
    "requiredScopes": ["application:webhooks_write"]
  }, {
    "id": "webex_delete_webhook",
    "label": "Delete Webhook",
    "description": "Deletes a webhook, by ID",
    "requiredScopes": ["application:webhooks_write"]
  }],
  "releaseStage": "preview",
  "categories": ["messaging"],
  "scopeDefinitions": [{
    "name": "spark:people_read",
    "description": "Read users company directory"
  }, {
    "name": "spark:teams_write",
    "description": "Create teams on users behalf"
  }, {
    "name": "spark:teams_read",
    "description": "List teams user is a member of"
  }, {
    "name": "spark:team_memberships_write",
    "description": "Add people to teams on users behalf"
  }, {
    "name": "spark:team_memberships_read",
    "description": "List people in teams user belongs to"
  }, {
    "name": "spark:rooms_write",
    "description": "Manage rooms on behalf of user"
  }, {
    "name": "spark:rooms_read",
    "description": "List titles of rooms user is in"
  }, {
    "name": "spark:messages_write",
    "description": "Post and delete messages on behalf of user"
  }, {
    "name": "spark:messages_read",
    "description": "Read content of rooms user is in"
  }, {
    "name": "spark:memberships_write",
    "description": "Invite people to rooms on behalf of user"
  }, {
    "name": "spark:memberships_read",
    "description": "List people in rooms user is in"
  }, {
    "name": "meeting:schedules_write",
    "description": "Create, manage, or cancel scheduled Webex meetings"
  }, {
    "name": "meeting:schedules_read",
    "description": "Retrieve Webex meeting lists and details"
  }, {
    "name": "meeting:preferences_write",
    "description": "Edit Webex meeting preferences"
  }, {
    "name": "meeting:preferences_read",
    "description": "Retrieve Webex meeting preferences"
  }, {
    "name": "meeting:participants_write",
    "description": "Manage participants within meetings"
  }, {
    "name": "meeting:participants_read",
    "description": "Read participant information from meetings"
  }, {
    "name": "meeting:transcripts_read",
    "description": "Retrieve Webex meetings transcripts"
  }, {
    "name": "spark:recordings_write",
    "description": "Update and delete access to converged recordings for recording owners"
  }, {
    "name": "spark:recordings_read",
    "description": "Read access to converged recordings for recording owners"
  }, {
    "name": "spark:organizations_read",
    "description": "Access to read user organizations"
  }, {
    "name": "spark-admin:people_write",
    "description": "Access to write to company directory"
  }, {
    "name": "spark-admin:organizations_read",
    "description": "Access to read organizations"
  }, {
    "name": "spark-admin:licenses_read",
    "description": "Access to read licenses available in organizations"
  }, {
    "name": "spark-admin:roles_read",
    "description": "Access to read roles available in organization"
  }, {
    "name": "spark-admin:locations_write",
    "description": "Create and edit location configuration"
  }, {
    "name": "spark-admin:locations_read",
    "description": "Read and list location configuration"
  }, {
    "name": "spark-admin:workspaces_write",
    "description": "Create, modify, and delete workspaces"
  }, {
    "name": "spark-admin:workspaces_read",
    "description": "See details for workspaces"
  }, {
    "name": "spark-admin:devices_read",
    "description": "See details for any device in organization"
  }, {
    "name": "spark-admin:telephony_config_write",
    "description": "Create, edit and delete telephony configuration"
  }, {
    "name": "meeting:admin_config_read",
    "description": "Retrieve Webex meeting configurations as an administrator"
  }, {
    "name": "spark-admin:recordings_write",
    "description": "Update and delete access to converged recording resources for admins"
  }, {
    "name": "spark-admin:recordings_read",
    "description": "Read access to converged recording resources for admins"
  }, {
    "name": "spark-admin:reports_write",
    "description": "Manage partner reports"
  }, {
    "name": "spark-admin:reports_read",
    "description": "Fetch partner reports and templates"
  }, {
    "name": "spark-admin:resource_groups_read",
    "description": "Access to read organization resource groups"
  }, {
    "name": "spark-admin:resource_group_memberships_write",
    "description": "Access to update organization resource group memberships"
  }, {
    "name": "spark-admin:resource_group_memberships_read",
    "description": "Access to read organization resource group memberships"
  }, {
    "name": "spark-admin:hybrid_clusters_read",
    "description": "Access to read hybrid clusters for organization"
  }, {
    "name": "spark-admin:hybrid_connectors_read",
    "description": "Access to read hybrid connectors for organization"
  }, {
    "name": "spark-compliance:events_read",
    "description": "Access to read events in organization"
  }, {
    "name": "audit:events_read",
    "description": "Access to the audit log for an organization"
  }, {
    "name": "analytics:read_all",
    "description": "Access to read meeting quality metrics for organization"
  }, {
    "name": "application:webhooks_write",
    "description": "Register Service App authorization webhook"
  }, {
    "name": "application:webhooks_read",
    "description": "List webhooks for Service App authorization"
  }]
};

<ConnectorPage connector={connector} />
