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

# 360Learning

> 78 actions available for 360Learning 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'
  }} className="getting-started-section">
      <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: {
      fontSize: '12px',
      marginBottom: '8px'
    },
    tableContainer: {
      maxHeight: '500px',
      overflowY: 'auto',
      overflowX: 'auto',
      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,
      padding: '10px 12px',
      fontWeight: '600',
      zIndex: 1
    },
    gridRow: {
      display: 'contents'
    },
    gridCellAction: {
      padding: '10px 12px',
      fontWeight: '500'
    },
    gridCellKey: {
      padding: '10px 12px'
    },
    gridCellScopes: {
      padding: '10px 12px',
      fontSize: '12px'
    },
    gridCellDescription: {
      padding: '10px 12px'
    }
  };
  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} className="actions-library-count">
        {filtered.length === 0 ? '0 actions found' : `${filtered.length} action${filtered.length !== 1 ? 's' : ''}`}
      </div>
      {}
      <div className="not-prose actions-library-table-container" style={styles.tableContainer}>
        <div style={{
    ...hasScopesColumn ? {
      ...styles.gridTable,
      ...styles.gridTableWithScopes
    } : styles.gridTable
  }}>
          {}
          <div style={styles.gridHeader}>
            <div style={styles.gridHeaderCell} className="actions-library-grid-header-cell">Action</div>
            <div style={styles.gridHeaderCell} className="actions-library-grid-header-cell">Description</div>
            {hasScopesColumn && <div style={styles.gridHeaderCell} className="actions-library-grid-header-cell">Required scopes</div>}
          </div>
          {}
          {filtered.map(a => <div key={a.id} style={styles.gridRow}>
              <div style={styles.gridCellAction} className="actions-library-grid-cell">
                <div>{a.label}</div>
                <div style={{
    marginTop: '4px'
  }}>
                  <KeyCell id={a.id} />
                </div>
              </div>
              <div style={styles.gridCellDescription} className="actions-library-grid-cell actions-library-grid-cell--description">{a.description}</div>
              {hasScopesColumn && <div style={styles.gridCellScopes} className="actions-library-grid-cell actions-library-grid-cell--scopes">
                  <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',
      fontSize: '14px',
      cursor: 'pointer',
      whiteSpace: 'nowrap',
      minWidth: '160px',
      justifyContent: 'space-between'
    },
    dropdownMenu: {
      position: 'absolute',
      top: '100%',
      right: 0,
      marginTop: '4px',
      borderRadius: '8px',
      zIndex: 50,
      minWidth: '220px',
      maxHeight: '320px',
      display: 'flex',
      flexDirection: 'column'
    },
    dropdownHeader: {
      padding: '8px 12px'
    },
    selectActions: {
      display: 'flex',
      alignItems: 'center',
      gap: '8px',
      marginTop: '6px',
      fontSize: '12px'
    },
    selectActionBtn: {
      background: 'none',
      border: 'none',
      cursor: 'pointer',
      padding: '2px 4px',
      fontSize: '12px'
    },
    dropdownSearchInput: {
      width: '100%',
      padding: '8px 10px',
      borderRadius: '6px',
      fontSize: '13px',
      outline: 'none'
    },
    dropdownList: {
      overflowY: 'auto',
      maxHeight: '220px',
      padding: '4px 0'
    },
    dropdownItem: {
      display: 'flex',
      alignItems: 'center',
      gap: '10px',
      padding: '8px 12px',
      cursor: 'pointer',
      fontSize: '13px',
      transition: 'background-color 0.1s'
    },
    checkbox: {
      width: '16px',
      height: '16px',
      borderRadius: '4px',
      display: 'flex',
      alignItems: 'center',
      justifyContent: 'center',
      flexShrink: 0
    },
    checkmark: {
      color: 'white',
      fontSize: '10px',
      fontWeight: 'bold'
    },
    dropdownFooter: {
      padding: '8px 12px',
      display: 'flex',
      justifyContent: 'space-between',
      alignItems: 'center'
    },
    clearButton: {
      fontSize: '12px',
      cursor: 'pointer',
      padding: '4px 8px',
      borderRadius: '4px',
      border: 'none',
      background: 'none'
    },
    badge: {
      fontSize: '11px',
      fontWeight: '600',
      padding: '2px 6px',
      borderRadius: '10px',
      marginLeft: '4px'
    },
    chevron: {
      fontSize: '10px',
      transition: 'transform 0.15s'
    },
    noResults: {
      padding: '12px',
      textAlign: 'center',
      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} className={`filter-dropdown__trigger${safeSelected.length > 0 ? ' filter-dropdown__trigger--active' : ''}`}>
        <span>
          {label}
          {safeSelected.length > 0 && <span style={styles.badge} className="filter-dropdown__badge">{safeSelected.length}</span>}
        </span>
        <span style={{
    ...styles.chevron,
    transform: dropdownOpen ? 'rotate(180deg)' : 'rotate(0deg)'
  }} className="filter-dropdown__chevron">
          ▼
        </span>
      </button>
      {dropdownOpen && <div style={styles.dropdownMenu} className="filter-dropdown__menu">
          <div style={styles.dropdownHeader} className="filter-dropdown__header">
            <input type="text" placeholder={searchPlaceholder} value={search} onChange={e => setSearch(e.target.value)} style={styles.dropdownSearchInput} className="filter-dropdown__search" autoFocus />
            <div style={styles.selectActions}>
              <button type="button" onClick={selectAll} style={styles.selectActionBtn} className="filter-dropdown__action-btn">
                Select all
              </button>
              <span className="filter-dropdown__separator">|</span>
              <button type="button" onClick={clearFilters} style={styles.selectActionBtn} className="filter-dropdown__action-btn">
                Clear
              </button>
            </div>
          </div>
          <div style={styles.dropdownList}>
            {filteredItems.length === 0 ? <div style={styles.noResults} className="filter-dropdown__no-results">{emptyLabel}</div> : filteredItems.map(item => {
    const itemClass = ['filter-dropdown__item', hoveredItem === item ? 'filter-dropdown__item--hovered' : '', isSelected(item) ? 'filter-dropdown__item--selected' : ''].filter(Boolean).join(' ');
    const checkboxClass = `filter-dropdown__checkbox${isSelected(item) ? ' filter-dropdown__checkbox--checked' : ''}`;
    return <div key={item} onClick={() => toggleItem(item)} onMouseEnter={() => setHoveredItem(item)} onMouseLeave={() => setHoveredItem(null)} style={styles.dropdownItem} className={itemClass}>
                    <div style={styles.checkbox} className={checkboxClass}>
                      {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',
    fontSize: '14px',
    outline: 'none',
    flex: 1,
    minWidth: 0
  };
  return <input type="text" placeholder={placeholder} value={value} onChange={e => onChange(e.target.value)} style={baseStyle} className="search-bar" />;
};

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'
    },
    categoryTag: {
      display: 'inline-block',
      padding: '2px 8px',
      borderRadius: '4px',
      fontSize: '11px',
      fontWeight: '500'
    },
    icon: {
      width: '48px',
      height: '48px',
      borderRadius: '10px',
      padding: '2px'
    },
    title: {
      fontSize: '24px',
      fontWeight: '600'
    },
    subtitle: {
      fontSize: '14px'
    },
    authDescription: {
      fontSize: '14px',
      marginTop: 0
    },
    sectionTitle: {
      fontSize: '18px',
      fontWeight: '600',
      marginBottom: '12px'
    },
    codeWrapper: {
      position: 'relative',
      display: 'inline-flex',
      alignItems: 'center',
      maxWidth: '100%',
      cursor: 'pointer',
      overflowX: 'auto',
      overflowY: 'hidden',
      msOverflowStyle: 'none',
      scrollbarWidth: 'none'
    },
    code: {
      padding: '4px 8px',
      borderRadius: '4px',
      fontSize: '11px',
      display: 'inline-block',
      whiteSpace: 'nowrap',
      transition: 'background-color 0.15s'
    },
    tooltip: {
      position: 'absolute',
      top: '100%',
      left: '50%',
      transform: 'translateX(-50%)',
      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',
      zIndex: 50
    }
  };
  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 = ['ai', '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 variantClass = connector.releaseStage === 'beta' ? 'connector-page-tag-beta' : 'connector-page-tag-preview';
    return <span style={styles.releaseTag} className={variantClass}>
        {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} className="connector-page-category-tag">
            {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 codeClassName = `connector-page-code${isCopied ? ' connector-page-code--copied' : ''}`;
    return <div style={styles.codeWrapper} onMouseEnter={() => setIsHovered(true)} onMouseLeave={() => setIsHovered(false)} onClick={() => copyToClipboard(text, copyId)} title="">
        {(isHovered || isCopied) && <div style={styles.tooltip} className="connector-page-tooltip">
            {isCopied ? '✓ Copied!' : 'Click to copy'}
            <div style={styles.tooltipArrow} className="connector-page-tooltip-arrow" />
          </div>}
        <code style={styles.code} className={codeClassName}>
          {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} className="connector-page-icon" onError={handleImageError} />
        <div>
          <div style={styles.title}>{connector.name}</div>
          <div style={styles.subtitle} className="connector-page-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
    }} className="connector-page-auth-description">
                    {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>

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

      <GettingStarted connector={connector} />

      {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>
        </>}

    </div>;
};

export const connector = {
  "key": "360learning",
  "name": "360Learning",
  "icon": "https://stackone-logos.com/api/360-learning/filled/png",
  "authentication": [{
    "label": "OAuth 2.0",
    "description": "Create OAuth2 credentials from Settings > API V2 in your 360Learning admin panel.",
    "configGuide": "connectors/360learning/guides/link-account/oauth-2-0",
    "setupGuide": "connectors/360learning/guides/auth-config/oauth-2-0"
  }],
  "actions": [{
    "id": "360learning_list_users",
    "label": "List Users",
    "description": "Retrieve a list of all users in the platform",
    "requiredScopes": ["users:read"]
  }, {
    "id": "360learning_get_user",
    "label": "Get User",
    "description": "Retrieve details of a specific user by ID or email",
    "requiredScopes": ["users:read"]
  }, {
    "id": "360learning_create_user",
    "label": "Create Invited User",
    "description": "Create a new invited user account",
    "requiredScopes": ["users:write"]
  }, {
    "id": "360learning_activate_user",
    "label": "Activate User",
    "description": "Activate a specific user account",
    "requiredScopes": ["users:write"]
  }, {
    "id": "360learning_add_manager_to_user",
    "label": "Add Manager To User",
    "description": "Add a manager to a user account",
    "requiredScopes": ["users:write"]
  }, {
    "id": "360learning_remove_manager_from_user",
    "label": "Remove Manager From User",
    "description": "Remove a manager from a user account",
    "requiredScopes": ["users:write"]
  }, {
    "id": "360learning_list_user_managers",
    "label": "List User Managers",
    "description": "List all manager IDs for a user",
    "requiredScopes": ["users:read"]
  }, {
    "id": "360learning_list_user_subordinates",
    "label": "List User Subordinates",
    "description": "List all subordinate IDs for a user",
    "requiredScopes": ["users:read"]
  }, {
    "id": "360learning_list_user_custom_field_values",
    "label": "List User Custom Field Values",
    "description": "List all custom field values for a user",
    "requiredScopes": ["users:read"]
  }, {
    "id": "360learning_replace_user_custom_field_values",
    "label": "Replace User Custom Field Values",
    "description": "Replace all custom field values for a user",
    "requiredScopes": ["users:write"]
  }, {
    "id": "360learning_replace_user_password",
    "label": "Replace User Password",
    "description": "Replace the password of a user",
    "requiredScopes": ["users:write"]
  }, {
    "id": "360learning_pseudonymize_user",
    "label": "Pseudonymize User",
    "description": "Pseudonymize a user by removing personal identifiable information",
    "requiredScopes": ["users:write"]
  }, {
    "id": "360learning_delete_user",
    "label": "Delete User",
    "description": "Delete a specific user account",
    "requiredScopes": ["users:write"]
  }, {
    "id": "360learning_edit_user",
    "label": "Edit User",
    "description": "Update specific fields of an existing user",
    "requiredScopes": ["users:write"]
  }, {
    "id": "360learning_list_courses",
    "label": "List Courses",
    "description": "Retrieve a list of all courses in the platform",
    "requiredScopes": ["courses:read"]
  }, {
    "id": "360learning_list_courses_statistics",
    "label": "List Courses Statistics",
    "description": "Retrieve statistics for all course attempts in the platform",
    "requiredScopes": ["courseStats:read"]
  }, {
    "id": "360learning_get_course",
    "label": "Get Course",
    "description": "Retrieve details of a specific course",
    "requiredScopes": ["courses:read"]
  }, {
    "id": "360learning_get_course_tags",
    "label": "Get Course Tags",
    "description": "Retrieve all tags associated with a specific course",
    "requiredScopes": ["tags:read"]
  }, {
    "id": "360learning_archive_restore_course",
    "label": "Archive Or Restore Course",
    "description": "Archive or restore a course",
    "requiredScopes": ["courses:write"]
  }, {
    "id": "360learning_replace_course_tags",
    "label": "Replace All Tags In Course",
    "description": "Replace all tags in a course with new tags",
    "requiredScopes": ["courses:write"]
  }, {
    "id": "360learning_list_groups",
    "label": "List Groups",
    "description": "Retrieve a list of all groups in the platform",
    "requiredScopes": ["groups:read"]
  }, {
    "id": "360learning_get_group",
    "label": "Get Group",
    "description": "Retrieve details of a specific group",
    "requiredScopes": ["groups:read"]
  }, {
    "id": "360learning_create_group",
    "label": "Create Group",
    "description": "Create a new group in the platform",
    "requiredScopes": ["groups:write"]
  }, {
    "id": "360learning_edit_group",
    "label": "Edit Group",
    "description": "Update an existing group's information",
    "requiredScopes": ["groups:write"]
  }, {
    "id": "360learning_list_group_memberships",
    "label": "List Group Memberships",
    "description": "Retrieve all users and their roles in a specific group",
    "requiredScopes": ["groups:read"]
  }, {
    "id": "360learning_add_user_role",
    "label": "Add User Role To Group",
    "description": "Add a user to a group with a specific role",
    "requiredScopes": ["groups:write"]
  }, {
    "id": "360learning_remove_user_role",
    "label": "Remove User Role From Group",
    "description": "Remove a user's role from a group",
    "requiredScopes": ["groups:write"]
  }, {
    "id": "360learning_list_group_catalog_content_ids",
    "label": "List Group Catalog Content IDs",
    "description": "Retrieve IDs of content in a group's catalog",
    "requiredScopes": ["groups:read"]
  }, {
    "id": "360learning_list_group_library_content_ids",
    "label": "List Group Library Content IDs",
    "description": "Retrieve IDs of content in a group's library",
    "requiredScopes": ["groups:read"]
  }, {
    "id": "360learning_create_path",
    "label": "Create Path",
    "description": "Create a new learning path",
    "requiredScopes": ["paths:write"]
  }, {
    "id": "360learning_replace_path_steps",
    "label": "Replace Path Steps",
    "description": "Replace all steps in a path",
    "requiredScopes": ["paths:write"]
  }, {
    "id": "360learning_list_paths",
    "label": "List Paths",
    "description": "Retrieve a list of all learning paths in the platform",
    "requiredScopes": ["paths:read"]
  }, {
    "id": "360learning_get_path",
    "label": "Get Path",
    "description": "Retrieve details of a specific learning path",
    "requiredScopes": ["paths:read"]
  }, {
    "id": "360learning_delete_path",
    "label": "Delete Path",
    "description": "Delete a specific learning path",
    "requiredScopes": ["paths:write"]
  }, {
    "id": "360learning_edit_path",
    "label": "Edit Path",
    "description": "Update specific fields of an existing path",
    "requiredScopes": ["paths:write"]
  }, {
    "id": "360learning_list_path_sessions",
    "label": "List Path Sessions",
    "description": "List all sessions in a path",
    "requiredScopes": ["paths:read"]
  }, {
    "id": "360learning_get_path_session",
    "label": "Get Path Session",
    "description": "Retrieve details of a specific path session",
    "requiredScopes": ["paths:read"]
  }, {
    "id": "360learning_edit_path_session",
    "label": "Edit Path Session",
    "description": "Update specific fields of an existing path session",
    "requiredScopes": ["paths:write"]
  }, {
    "id": "360learning_delete_path_session",
    "label": "Delete Path Session",
    "description": "Delete a specific path session",
    "requiredScopes": ["paths:write"]
  }, {
    "id": "360learning_archive_restore_path",
    "label": "Archive Or Restore Path",
    "description": "Archive or restore a path",
    "requiredScopes": ["paths:write"]
  }, {
    "id": "360learning_list_path_enrollments",
    "label": "List Path Enrollments",
    "description": "List all enrollments for a path",
    "requiredScopes": ["paths:read"]
  }, {
    "id": "360learning_get_path_session_audience",
    "label": "Get Path Session Audience",
    "description": "Retrieve path session audience information",
    "requiredScopes": ["paths:read"]
  }, {
    "id": "360learning_replace_path_session_audience",
    "label": "Replace Path Session Audience",
    "description": "Replace an audience for a path session",
    "requiredScopes": ["paths:write"]
  }, {
    "id": "360learning_get_path_session_metrics",
    "label": "Get Path Session Metrics",
    "description": "Retrieve metrics for a path session",
    "requiredScopes": ["pathStats:read"]
  }, {
    "id": "360learning_list_path_tags",
    "label": "List Path Tags",
    "description": "List all tags in a path",
    "requiredScopes": ["tags:read"]
  }, {
    "id": "360learning_replace_path_tags",
    "label": "Replace Path Tags",
    "description": "Replace all tags in a path",
    "requiredScopes": ["tags:write"]
  }, {
    "id": "360learning_list_path_session_user_stats",
    "label": "List Path Session User Statistics",
    "description": "List all user statistics for a path session",
    "requiredScopes": ["pathStats:read"]
  }, {
    "id": "360learning_edit_child_path_session",
    "label": "Edit Child Path Session",
    "description": "Edit a child path session",
    "requiredScopes": ["paths:write"]
  }, {
    "id": "360learning_create_path_session",
    "label": "Create Path Session",
    "description": "Create a new session for a learning path",
    "requiredScopes": ["paths:write"]
  }, {
    "id": "360learning_list_classrooms",
    "label": "List Classrooms",
    "description": "Retrieve a list of all classrooms in the platform",
    "requiredScopes": ["classrooms:read"]
  }, {
    "id": "360learning_get_classroom",
    "label": "Get Classroom",
    "description": "Retrieve details of a specific classroom",
    "requiredScopes": ["classrooms:read"]
  }, {
    "id": "360learning_create_classroom",
    "label": "Create Classroom",
    "description": "Create a new classroom",
    "requiredScopes": ["classrooms:write"]
  }, {
    "id": "360learning_edit_classroom",
    "label": "Edit Classroom",
    "description": "Update specific fields of an existing classroom",
    "requiredScopes": ["classrooms:write"]
  }, {
    "id": "360learning_list_classroom_slots",
    "label": "List Classroom Slots",
    "description": "Retrieve all slots for a classroom",
    "requiredScopes": ["classrooms:read"]
  }, {
    "id": "360learning_create_classroom_slot",
    "label": "Create Classroom Slot",
    "description": "Add a slot to a classroom",
    "requiredScopes": ["classrooms:write"]
  }, {
    "id": "360learning_delete_classroom_slot",
    "label": "Delete Classroom Slot",
    "description": "Remove a slot from a classroom",
    "requiredScopes": ["classrooms:write"]
  }, {
    "id": "360learning_register_user_for_slot",
    "label": "Register User For Classroom Slot",
    "description": "Register a user to a classroom slot",
    "requiredScopes": ["classrooms:write"]
  }, {
    "id": "360learning_list_slot_registrations",
    "label": "List Slot Registrations",
    "description": "List all registrations in a classroom slot",
    "requiredScopes": ["classrooms:read"]
  }, {
    "id": "360learning_create_attendance_sheet",
    "label": "Create Attendance Sheet",
    "description": "Create an attendance sheet for a classroom slot",
    "requiredScopes": ["attendanceSheets:write"]
  }, {
    "id": "360learning_list_attendance_sheets",
    "label": "List Attendance Sheets",
    "description": "List all attendance sheets for a classroom slot",
    "requiredScopes": ["attendanceSheets:read"]
  }, {
    "id": "360learning_replace_attendance_sheet",
    "label": "Replace Attendance Sheet",
    "description": "Replace an attendance sheet in a classroom slot",
    "requiredScopes": ["attendanceSheets:write"]
  }, {
    "id": "360learning_delete_attendance_sheet",
    "label": "Delete Attendance Sheet",
    "description": "Delete an attendance sheet from a classroom slot",
    "requiredScopes": ["attendanceSheets:write"]
  }, {
    "id": "360learning_list_attendances",
    "label": "List Attendances",
    "description": "List all attendances for an attendance sheet",
    "requiredScopes": ["attendanceSheets:read"]
  }, {
    "id": "360learning_create_external_id_mapping",
    "label": "Create External ID Mapping",
    "description": "Create an external ID mapping",
    "requiredScopes": ["externalIds:write"]
  }, {
    "id": "360learning_list_external_id_mappings",
    "label": "List External ID Mappings",
    "description": "Retrieve a list of all external ID mappings",
    "requiredScopes": ["externalIds:read"]
  }, {
    "id": "360learning_delete_external_id_mapping",
    "label": "Delete External ID Mapping",
    "description": "Delete an external ID mapping",
    "requiredScopes": ["externalIds:write"]
  }, {
    "id": "360learning_replace_external_id_mapping",
    "label": "Replace External ID Mapping",
    "description": "Replace an external ID mapping",
    "requiredScopes": ["externalIds:write"]
  }, {
    "id": "360learning_list_custom_fields",
    "label": "List Custom Fields",
    "description": "Retrieve a list of all custom fields in the platform",
    "requiredScopes": ["customFields:read"]
  }, {
    "id": "360learning_create_custom_field",
    "label": "Create Custom Field",
    "description": "Create a new custom field",
    "requiredScopes": ["customFields:write"]
  }, {
    "id": "360learning_edit_custom_field",
    "label": "Edit Custom Field",
    "description": "Update an existing custom field",
    "requiredScopes": ["customFields:write"]
  }, {
    "id": "360learning_delete_custom_field",
    "label": "Delete Custom Field",
    "description": "Delete a custom field",
    "requiredScopes": ["customFields:write"]
  }, {
    "id": "360learning_list_custom_field_authorized_values",
    "label": "List Custom Field Authorized Values",
    "description": "List all authorized values for a custom field",
    "requiredScopes": ["customFields:read"]
  }, {
    "id": "360learning_replace_custom_field_authorized_values",
    "label": "Replace Custom Field Authorized Values",
    "description": "Replace all authorized values for a custom field",
    "requiredScopes": ["customFields:write"]
  }, {
    "id": "360learning_list_tags",
    "label": "List Tags",
    "description": "Retrieve a list of all tags in the platform",
    "requiredScopes": ["tags:read"]
  }, {
    "id": "360learning_get_tag",
    "label": "Get Tag",
    "description": "Retrieve details of a specific tag",
    "requiredScopes": ["tags:read"]
  }, {
    "id": "360learning_create_tag",
    "label": "Create Tag",
    "description": "Create a new tag",
    "requiredScopes": ["tags:write"]
  }, {
    "id": "360learning_replace_tag",
    "label": "Replace Tag",
    "description": "Replace an existing tag with new data",
    "requiredScopes": ["tags:write"]
  }, {
    "id": "360learning_delete_tag",
    "label": "Delete Tag",
    "description": "Delete a specific tag",
    "requiredScopes": ["tags:write"]
  }],
  "releaseStage": "ga",
  "categories": ["lms"],
  "scopeDefinitions": [{
    "name": "users:write",
    "description": "Allow creating, updating, and deleting users",
    "includes": ["users:read"]
  }, {
    "name": "users:read",
    "description": "Allow reading user information"
  }, {
    "name": "courses:read",
    "description": "Allow reading course information"
  }, {
    "name": "courses:write",
    "description": "Allow updating and archiving courses",
    "includes": ["courses:read"]
  }, {
    "name": "courseStats:read",
    "description": "Allow reading course statistics and metrics"
  }, {
    "name": "groups:read",
    "description": "Allow reading group information"
  }, {
    "name": "groups:write",
    "description": "Allow creating, updating, and managing groups",
    "includes": ["groups:read"]
  }, {
    "name": "classrooms:write",
    "description": "Allow creating, updating, and deleting classrooms",
    "includes": ["classrooms:read"]
  }, {
    "name": "classrooms:read",
    "description": "Allow reading classroom information"
  }, {
    "name": "paths:write",
    "description": "Allow creating, updating, and deleting paths",
    "includes": ["paths:read"]
  }, {
    "name": "paths:read",
    "description": "Allow reading path information"
  }, {
    "name": "customFields:write",
    "description": "Allow creating, updating, and deleting custom fields",
    "includes": ["customFields:read"]
  }, {
    "name": "customFields:read",
    "description": "Allow reading custom field information"
  }, {
    "name": "tags:write",
    "description": "Allow creating, updating, and deleting tags",
    "includes": ["tags:read"]
  }, {
    "name": "tags:read",
    "description": "Allow reading tag information"
  }, {
    "name": "externalIds:write",
    "description": "Allow creating, updating, and deleting external ID mappings",
    "includes": ["externalIds:read"]
  }, {
    "name": "externalIds:read",
    "description": "Allow reading external ID mappings"
  }, {
    "name": "attendanceSheets:write",
    "description": "Allow creating, updating, and deleting attendance sheets",
    "includes": ["attendanceSheets:read"]
  }, {
    "name": "attendanceSheets:read",
    "description": "Allow reading attendance sheets"
  }, {
    "name": "pathStats:read",
    "description": "Allow reading path statistics and metrics"
  }]
};

<ConnectorPage connector={connector} />
