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

# BigCommerce

> 120 actions available for BigCommerce 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": "bigcommerce",
  "name": "BigCommerce",
  "icon": "https://stackone-logos.com/api/bigcommerce/filled/png",
  "authentication": [{
    "label": "API Key",
    "description": "Create a Store-level API account in your BigCommerce admin panel to get API credentials.",
    "configGuide": "connectors/bigcommerce/guides/link-account/api-key",
    "setupGuide": "connectors/bigcommerce/guides/auth-config/api-key"
  }],
  "actions": [{
    "id": "bigcommerce_get_store_info",
    "label": "Get Store Information",
    "description": "Retrieve general store information including name, address, currency settings, and configuration details.",
    "requiredScopes": ["information_settings_read_only"]
  }, {
    "id": "bigcommerce_get_all_products",
    "label": "Get All Products",
    "description": "Retrieve a paginated list of products from the catalog with optional filtering.",
    "requiredScopes": ["products_read_only"]
  }, {
    "id": "bigcommerce_get_a_product",
    "label": "Get A Product",
    "description": "Retrieve detailed information for a specific product by its ID.",
    "requiredScopes": ["products_read_only"]
  }, {
    "id": "bigcommerce_create_a_product",
    "label": "Create A Product",
    "description": "Create a new product in the catalog.",
    "requiredScopes": ["products_modify"]
  }, {
    "id": "bigcommerce_update_a_product",
    "label": "Update A Product",
    "description": "Update an existing product's attributes by its ID.",
    "requiredScopes": ["products_modify"]
  }, {
    "id": "bigcommerce_delete_a_product",
    "label": "Delete A Product",
    "description": "Permanently delete a product from the catalog by its ID.",
    "requiredScopes": ["products_modify"]
  }, {
    "id": "bigcommerce_get_all_product_variants",
    "label": "Get All Product Variants",
    "description": "Retrieve all product variants across the catalog.",
    "requiredScopes": ["products_read_only"]
  }, {
    "id": "bigcommerce_get_all_product_variants_by_product_id",
    "label": "Get All Product Variants By Product ID",
    "description": "Retrieve all variants for a specific product.",
    "requiredScopes": ["products_read_only"]
  }, {
    "id": "bigcommerce_get_a_product_variant",
    "label": "Get A Product Variant",
    "description": "Retrieve details for a specific product variant.",
    "requiredScopes": ["products_read_only"]
  }, {
    "id": "bigcommerce_create_a_product_variant",
    "label": "Create A Product Variant",
    "description": "Create a new variant for a product.",
    "requiredScopes": ["products_modify"]
  }, {
    "id": "bigcommerce_update_a_product_variant",
    "label": "Update A Product Variant",
    "description": "Update an existing product variant.",
    "requiredScopes": ["products_modify"]
  }, {
    "id": "bigcommerce_delete_a_product_variant",
    "label": "Delete A Product Variant",
    "description": "Remove a product variant.",
    "requiredScopes": ["products_modify"]
  }, {
    "id": "bigcommerce_get_all_brands",
    "label": "Get All Brands",
    "description": "Retrieve all product brands with optional filtering and pagination.",
    "requiredScopes": ["products_read_only"]
  }, {
    "id": "bigcommerce_get_a_brand",
    "label": "Get A Brand",
    "description": "Retrieve detailed information for a specific brand by its ID.",
    "requiredScopes": ["products_read_only"]
  }, {
    "id": "bigcommerce_create_a_brand",
    "label": "Create A Brand",
    "description": "Create a new product brand in the catalog.",
    "requiredScopes": ["products_modify"]
  }, {
    "id": "bigcommerce_update_a_brand",
    "label": "Update A Brand",
    "description": "Update an existing brand's attributes by its ID.",
    "requiredScopes": ["products_modify"]
  }, {
    "id": "bigcommerce_delete_a_brand",
    "label": "Delete A Brand",
    "description": "Permanently delete a brand by its ID.",
    "requiredScopes": ["products_modify"]
  }, {
    "id": "bigcommerce_delete_brands",
    "label": "Delete Brands",
    "description": "Delete multiple brands by name filter.",
    "requiredScopes": ["products_modify"]
  }, {
    "id": "bigcommerce_get_all_customers",
    "label": "Get All Customers",
    "description": "Retrieve a paginated list of customers with optional filtering.",
    "requiredScopes": ["customers_read_only"]
  }, {
    "id": "bigcommerce_get_a_customer",
    "label": "Get A Customer",
    "description": "Retrieve detailed information for a specific customer by their ID.",
    "requiredScopes": ["customers_read_only"]
  }, {
    "id": "bigcommerce_create_customers",
    "label": "Create Customers",
    "description": "Create new customer accounts (up to 10 at once).",
    "requiredScopes": ["customers_modify"]
  }, {
    "id": "bigcommerce_update_customers",
    "label": "Update Customers",
    "description": "Update existing customers' profile information (up to 10 at once).",
    "requiredScopes": ["customers_modify"]
  }, {
    "id": "bigcommerce_delete_customers",
    "label": "Delete Customers",
    "description": "Permanently delete customers by their IDs.",
    "requiredScopes": ["customers_modify"]
  }, {
    "id": "bigcommerce_get_all_orders",
    "label": "Get All Orders",
    "description": "Retrieve a paginated list of orders with optional filtering by status, date, and customer.",
    "requiredScopes": ["orders_read_only"]
  }, {
    "id": "bigcommerce_get_an_order",
    "label": "Get An Order",
    "description": "Retrieve detailed information for a specific order by its ID.",
    "requiredScopes": ["orders_read_only"]
  }, {
    "id": "bigcommerce_update_an_order",
    "label": "Update An Order",
    "description": "Update an existing order's status, products, addresses, or other details.",
    "requiredScopes": ["orders_modify"]
  }, {
    "id": "bigcommerce_create_an_order",
    "label": "Create An Order",
    "description": "Create a new order with products and billing address.",
    "requiredScopes": ["orders_modify"]
  }, {
    "id": "bigcommerce_get_all_order_statuses",
    "label": "Get All Order Statuses",
    "description": "Retrieve all available order statuses.",
    "requiredScopes": ["orders_read_only"]
  }, {
    "id": "bigcommerce_list_order_products",
    "label": "List Order Products",
    "description": "Retrieve all products/line items for a specific order.",
    "requiredScopes": ["orders_read_only"]
  }, {
    "id": "bigcommerce_list_order_shipments",
    "label": "List Order Shipments",
    "description": "Retrieve all shipments for a specific order.",
    "requiredScopes": ["orders_read_only"]
  }, {
    "id": "bigcommerce_create_a_shipment",
    "label": "Create A Shipment",
    "description": "Create a shipment for an order with tracking information.",
    "requiredScopes": ["orders_modify"]
  }, {
    "id": "bigcommerce_get_locations",
    "label": "Get Locations",
    "description": "Retrieve all inventory locations configured for the store.",
    "requiredScopes": ["store_inventory_read_only"]
  }, {
    "id": "bigcommerce_get_a_location",
    "label": "Get A Location",
    "description": "Retrieve details for a specific inventory location by its ID.",
    "requiredScopes": ["store_inventory_read_only"]
  }, {
    "id": "bigcommerce_create_locations",
    "label": "Create Locations",
    "description": "Create new inventory locations.",
    "requiredScopes": ["store_inventory_modify"]
  }, {
    "id": "bigcommerce_get_inventory_at_locations",
    "label": "Get Inventory At Locations",
    "description": "Retrieve inventory levels for items at specified locations.",
    "requiredScopes": ["store_inventory_read_only"]
  }, {
    "id": "bigcommerce_absolute_adjustment",
    "label": "Absolute Adjustment",
    "description": "Override existing inventory levels for items at locations.",
    "requiredScopes": ["store_inventory_modify"]
  }, {
    "id": "bigcommerce_relative_adjustment",
    "label": "Relative Adjustment",
    "description": "Add or subtract inventory for items at locations.",
    "requiredScopes": ["store_inventory_modify"]
  }, {
    "id": "bigcommerce_get_all_channels",
    "label": "Get All Channels",
    "description": "Retrieve all sales channels configured for the store.",
    "requiredScopes": ["channel_settings_read_only"]
  }, {
    "id": "bigcommerce_get_a_channel",
    "label": "Get A Channel",
    "description": "Retrieve details for a specific channel by its ID.",
    "requiredScopes": ["channel_settings_read_only"]
  }, {
    "id": "bigcommerce_create_a_channel",
    "label": "Create A Channel",
    "description": "Create a new sales channel.",
    "requiredScopes": ["channel_settings_modify"]
  }, {
    "id": "bigcommerce_update_a_channel",
    "label": "Update A Channel",
    "description": "Update an existing channel's configuration.",
    "requiredScopes": ["channel_settings_modify"]
  }, {
    "id": "bigcommerce_get_all_currencies",
    "label": "Get All Currencies",
    "description": "Retrieve all currencies configured for the store.",
    "requiredScopes": ["information_settings_read_only"]
  }, {
    "id": "bigcommerce_get_a_currency",
    "label": "Get A Currency",
    "description": "Retrieve details for a specific currency by its ID.",
    "requiredScopes": ["information_settings_read_only"]
  }, {
    "id": "bigcommerce_create_a_currency",
    "label": "Create A Currency",
    "description": "Add a new currency to the store.",
    "requiredScopes": ["information_settings_modify"]
  }, {
    "id": "bigcommerce_update_a_currency",
    "label": "Update A Currency",
    "description": "Update an existing currency's settings.",
    "requiredScopes": ["information_settings_modify"]
  }, {
    "id": "bigcommerce_delete_a_currency",
    "label": "Delete A Currency",
    "description": "Remove a currency from the store.",
    "requiredScopes": ["information_settings_modify"]
  }, {
    "id": "bigcommerce_get_shipping_zones",
    "label": "Get Shipping Zones",
    "description": "Retrieve all shipping zones configured for the store.",
    "requiredScopes": ["information_settings_read_only"]
  }, {
    "id": "bigcommerce_get_a_shipping_zone",
    "label": "Get A Shipping Zone",
    "description": "Retrieve details for a specific shipping zone by its ID.",
    "requiredScopes": ["information_settings_read_only"]
  }, {
    "id": "bigcommerce_create_a_shipping_zone",
    "label": "Create A Shipping Zone",
    "description": "Create a new shipping zone.",
    "requiredScopes": ["information_settings_modify"]
  }, {
    "id": "bigcommerce_update_a_shipping_zone",
    "label": "Update A Shipping Zone",
    "description": "Update an existing shipping zone's configuration.",
    "requiredScopes": ["information_settings_modify"]
  }, {
    "id": "bigcommerce_delete_a_shipping_zone",
    "label": "Delete A Shipping Zone",
    "description": "Remove a shipping zone from the store.",
    "requiredScopes": ["information_settings_modify"]
  }, {
    "id": "bigcommerce_get_webhooks",
    "label": "Get Webhooks",
    "description": "Retrieve all webhooks registered for the store.",
    "requiredScopes": ["information_settings_read_only"]
  }, {
    "id": "bigcommerce_get_a_webhook",
    "label": "Get A Webhook",
    "description": "Retrieve details for a specific webhook by its ID.",
    "requiredScopes": ["information_settings_read_only"]
  }, {
    "id": "bigcommerce_create_a_webhook",
    "label": "Create A Webhook",
    "description": "Register a new webhook to receive event notifications.",
    "requiredScopes": ["information_settings_modify"]
  }, {
    "id": "bigcommerce_update_a_webhook",
    "label": "Update A Webhook",
    "description": "Update an existing webhook's configuration.",
    "requiredScopes": ["information_settings_modify"]
  }, {
    "id": "bigcommerce_delete_a_webhook",
    "label": "Delete A Webhook",
    "description": "Remove a webhook subscription.",
    "requiredScopes": ["information_settings_modify"]
  }, {
    "id": "bigcommerce_get_all_wishlists",
    "label": "Get All Wishlists",
    "description": "Retrieve all customer wishlists.",
    "requiredScopes": ["customers_read_only"]
  }, {
    "id": "bigcommerce_get_a_wishlist",
    "label": "Get A Wishlist",
    "description": "Retrieve details for a specific wishlist by its ID.",
    "requiredScopes": ["customers_read_only"]
  }, {
    "id": "bigcommerce_create_a_wishlist",
    "label": "Create A Wishlist",
    "description": "Create a new wishlist for a customer.",
    "requiredScopes": ["customers_modify"]
  }, {
    "id": "bigcommerce_update_a_wishlist",
    "label": "Update A Wishlist",
    "description": "Update an existing wishlist's properties.",
    "requiredScopes": ["customers_modify"]
  }, {
    "id": "bigcommerce_delete_a_wishlist",
    "label": "Delete A Wishlist",
    "description": "Remove a wishlist.",
    "requiredScopes": ["customers_modify"]
  }, {
    "id": "bigcommerce_get_pages",
    "label": "Get Pages",
    "description": "Retrieve all content pages from the store.",
    "requiredScopes": ["content_read_only"]
  }, {
    "id": "bigcommerce_get_a_page",
    "label": "Get A Page",
    "description": "Retrieve details for a specific page by its ID.",
    "requiredScopes": ["content_read_only"]
  }, {
    "id": "bigcommerce_create_a_page",
    "label": "Create A Page",
    "description": "Create a new content page.",
    "requiredScopes": ["content_modify"]
  }, {
    "id": "bigcommerce_update_a_page",
    "label": "Update A Page",
    "description": "Update an existing page's content and settings.",
    "requiredScopes": ["content_modify"]
  }, {
    "id": "bigcommerce_delete_a_page",
    "label": "Delete A Page",
    "description": "Remove a content page.",
    "requiredScopes": ["content_modify"]
  }, {
    "id": "bigcommerce_get_all_price_lists",
    "label": "Get All Price Lists",
    "description": "Retrieve all price lists configured for the store.",
    "requiredScopes": ["products_read_only"]
  }, {
    "id": "bigcommerce_get_a_price_list",
    "label": "Get A Price List",
    "description": "Retrieve details for a specific price list by its ID.",
    "requiredScopes": ["products_read_only"]
  }, {
    "id": "bigcommerce_create_a_price_list",
    "label": "Create A Price List",
    "description": "Create a new price list.",
    "requiredScopes": ["products_modify"]
  }, {
    "id": "bigcommerce_update_a_price_list",
    "label": "Update A Price List",
    "description": "Update an existing price list's properties.",
    "requiredScopes": ["products_modify"]
  }, {
    "id": "bigcommerce_delete_a_price_list",
    "label": "Delete A Price List",
    "description": "Remove a price list.",
    "requiredScopes": ["products_modify"]
  }, {
    "id": "bigcommerce_get_all_coupons",
    "label": "Get All Coupons",
    "description": "Retrieve all coupons configured for the store.",
    "requiredScopes": ["marketing_read_only"]
  }, {
    "id": "bigcommerce_get_a_coupon",
    "label": "Get A Coupon",
    "description": "Retrieve details for a specific coupon by its ID.",
    "requiredScopes": ["marketing_read_only"]
  }, {
    "id": "bigcommerce_create_a_coupon",
    "label": "Create A Coupon",
    "description": "Create a new coupon code.",
    "requiredScopes": ["marketing_modify"]
  }, {
    "id": "bigcommerce_update_a_coupon",
    "label": "Update A Coupon",
    "description": "Update an existing coupon's properties.",
    "requiredScopes": ["marketing_modify"]
  }, {
    "id": "bigcommerce_delete_a_coupon",
    "label": "Delete A Coupon",
    "description": "Remove a coupon.",
    "requiredScopes": ["marketing_modify"]
  }, {
    "id": "bigcommerce_get_a_count_of_coupons",
    "label": "Get A Count Of Coupons",
    "description": "Returns a count of all coupons in the store.",
    "requiredScopes": ["marketing_read_only"]
  }, {
    "id": "bigcommerce_get_subscribers",
    "label": "Get Subscribers",
    "description": "Retrieve all newsletter subscribers.",
    "requiredScopes": ["customers_read_only"]
  }, {
    "id": "bigcommerce_get_a_subscriber",
    "label": "Get A Subscriber",
    "description": "Retrieve details for a specific subscriber by ID.",
    "requiredScopes": ["customers_read_only"]
  }, {
    "id": "bigcommerce_create_a_subscriber",
    "label": "Create A Subscriber",
    "description": "Add a new newsletter subscriber.",
    "requiredScopes": ["customers_modify"]
  }, {
    "id": "bigcommerce_delete_subscribers",
    "label": "Delete Subscribers",
    "description": "Delete subscribers matching filter criteria.",
    "requiredScopes": ["customers_modify"]
  }, {
    "id": "bigcommerce_delete_a_subscriber",
    "label": "Delete A Subscriber",
    "description": "Remove a newsletter subscriber by ID.",
    "requiredScopes": ["customers_modify"]
  }, {
    "id": "bigcommerce_get_tax_classes",
    "label": "Get Tax Classes",
    "description": "Retrieve all tax classes configured for the store.",
    "requiredScopes": ["information_settings_read_only"]
  }, {
    "id": "bigcommerce_get_a_tax_class",
    "label": "Get A Tax Class",
    "description": "Retrieve details for a specific tax class by ID.",
    "requiredScopes": ["information_settings_read_only"]
  }, {
    "id": "bigcommerce_get_all_countries",
    "label": "Get All Countries",
    "description": "Retrieve all countries available in BigCommerce.",
    "requiredScopes": ["information_settings_read_only"]
  }, {
    "id": "bigcommerce_get_a_country",
    "label": "Get A Country",
    "description": "Retrieve details for a specific country by ID.",
    "requiredScopes": ["information_settings_read_only"]
  }, {
    "id": "bigcommerce_get_a_count_of_all_countries",
    "label": "Get A Count Of All Countries",
    "description": "Returns a count of all countries.",
    "requiredScopes": ["information_settings_read_only"]
  }, {
    "id": "bigcommerce_get_all_countrys_states",
    "label": "Get All Country's States",
    "description": "Retrieve all states or provinces for a country.",
    "requiredScopes": ["information_settings_read_only"]
  }, {
    "id": "bigcommerce_get_all_scripts",
    "label": "Get All Scripts",
    "description": "Retrieve all scripts installed on the store.",
    "requiredScopes": ["content_read_only"]
  }, {
    "id": "bigcommerce_get_a_script",
    "label": "Get A Script",
    "description": "Retrieve details for a specific script by its UUID.",
    "requiredScopes": ["content_read_only"]
  }, {
    "id": "bigcommerce_create_a_script",
    "label": "Create A Script",
    "description": "Add a new script to the storefront.",
    "requiredScopes": ["content_modify"]
  }, {
    "id": "bigcommerce_update_a_script",
    "label": "Update A Script",
    "description": "Update an existing script's properties.",
    "requiredScopes": ["content_modify"]
  }, {
    "id": "bigcommerce_delete_a_script",
    "label": "Delete A Script",
    "description": "Remove a script from the storefront.",
    "requiredScopes": ["content_modify"]
  }, {
    "id": "bigcommerce_get_sites",
    "label": "Get Sites",
    "description": "Retrieve all sites/storefronts configured for the store.",
    "requiredScopes": ["sites_routes_read_only"]
  }, {
    "id": "bigcommerce_get_a_site",
    "label": "Get A Site",
    "description": "Retrieve details for a specific site by ID.",
    "requiredScopes": ["sites_routes_read_only"]
  }, {
    "id": "bigcommerce_create_a_site",
    "label": "Create A Site",
    "description": "Create a site that links a headless storefront to a sales channel.",
    "requiredScopes": ["sites_routes_modify"]
  }, {
    "id": "bigcommerce_get_all_themes",
    "label": "Get All Themes",
    "description": "Retrieve all themes available for the store.",
    "requiredScopes": ["themes_read_only"]
  }, {
    "id": "bigcommerce_get_a_theme",
    "label": "Get A Theme",
    "description": "Retrieve details for a specific theme by UUID.",
    "requiredScopes": ["themes_read_only"]
  }, {
    "id": "bigcommerce_activate_a_theme",
    "label": "Activate A Theme",
    "description": "Activate a theme variation on a channel.",
    "requiredScopes": ["themes_modify"]
  }, {
    "id": "bigcommerce_get_all_categories",
    "label": "Get All Categories",
    "description": "Retrieve a list of categories with filtering options.",
    "requiredScopes": ["products_read_only"]
  }, {
    "id": "bigcommerce_get_all_category_trees",
    "label": "Get All Category Trees",
    "description": "Retrieve all category trees for the store.",
    "requiredScopes": ["products_read_only"]
  }, {
    "id": "bigcommerce_upsert_category_trees",
    "label": "Upsert Category Trees",
    "description": "Create or update category trees.",
    "requiredScopes": ["products_modify"]
  }, {
    "id": "bigcommerce_delete_category_trees",
    "label": "Delete Category Trees",
    "description": "Delete one or more category trees.",
    "requiredScopes": ["products_modify"]
  }, {
    "id": "bigcommerce_get_a_category_tree",
    "label": "Get A Category Tree",
    "description": "Retrieve a specific category tree with all its categories.",
    "requiredScopes": ["products_read_only"]
  }, {
    "id": "bigcommerce_create_categories",
    "label": "Create Categories",
    "description": "Create one or more categories.",
    "requiredScopes": ["products_modify"]
  }, {
    "id": "bigcommerce_update_categories",
    "label": "Update Categories",
    "description": "Update one or more categories.",
    "requiredScopes": ["products_modify"]
  }, {
    "id": "bigcommerce_delete_categories",
    "label": "Delete Categories",
    "description": "Delete one or more categories.",
    "requiredScopes": ["products_modify"]
  }, {
    "id": "bigcommerce_create_a_cart",
    "label": "Create A Cart",
    "description": "Create a new shopping cart.",
    "requiredScopes": ["carts_modify"]
  }, {
    "id": "bigcommerce_get_a_cart",
    "label": "Get A Cart",
    "description": "Retrieve a cart by its ID.",
    "requiredScopes": ["carts_read_only"]
  }, {
    "id": "bigcommerce_delete_a_cart",
    "label": "Delete A Cart",
    "description": "Delete a cart by its ID.",
    "requiredScopes": ["carts_modify"]
  }, {
    "id": "bigcommerce_add_cart_line_items",
    "label": "Add Cart Line Items",
    "description": "Add one or more items to a cart.",
    "requiredScopes": ["carts_modify"]
  }, {
    "id": "bigcommerce_update_cart_line_item",
    "label": "Update Cart Line Item",
    "description": "Update a line item in a cart.",
    "requiredScopes": ["carts_modify"]
  }, {
    "id": "bigcommerce_delete_cart_line_item",
    "label": "Delete Cart Line Item",
    "description": "Remove a line item from a cart.",
    "requiredScopes": ["carts_modify"]
  }, {
    "id": "bigcommerce_get_a_checkout",
    "label": "Get A Checkout",
    "description": "Retrieve a checkout by its ID.",
    "requiredScopes": ["checkouts_read_only"]
  }, {
    "id": "bigcommerce_add_checkout_billing_address",
    "label": "Add Checkout Billing Address",
    "description": "Add a billing address to a checkout.",
    "requiredScopes": ["checkouts_modify"]
  }, {
    "id": "bigcommerce_update_checkout_billing_address",
    "label": "Update Checkout Billing Address",
    "description": "Update the billing address on a checkout.",
    "requiredScopes": ["checkouts_modify"]
  }, {
    "id": "bigcommerce_add_checkout_consignment",
    "label": "Add Checkout Consignment",
    "description": "Add a shipping consignment to a checkout.",
    "requiredScopes": ["checkouts_modify"]
  }, {
    "id": "bigcommerce_update_checkout_consignment",
    "label": "Update Checkout Consignment",
    "description": "Update a consignment on a checkout.",
    "requiredScopes": ["checkouts_modify"]
  }, {
    "id": "bigcommerce_delete_checkout_consignment",
    "label": "Delete Checkout Consignment",
    "description": "Remove a consignment from a checkout.",
    "requiredScopes": ["checkouts_modify"]
  }, {
    "id": "bigcommerce_create_checkout_order",
    "label": "Create Order From Checkout",
    "description": "Create an order from a completed checkout.",
    "requiredScopes": ["checkouts_modify"]
  }],
  "releaseStage": "preview",
  "categories": ["ecommerce", "products", "customers", "orders", "webhooks", "content", "marketing"],
  "scopeDefinitions": [{
    "name": "products_modify",
    "description": "Products - modify (Read and modify products, variants, categories, brands, and price lists)"
  }, {
    "name": "products_read_only",
    "description": "Products - read-only (Read-only access to products, variants, categories, brands, and price lists)"
  }, {
    "name": "orders_modify",
    "description": "Orders - modify (Read and modify orders and order data)"
  }, {
    "name": "orders_read_only",
    "description": "Orders - read-only (Read-only access to orders and order data)"
  }, {
    "name": "customers_modify",
    "description": "Customers - modify (Read and modify customers, wishlists, and subscribers)"
  }, {
    "name": "customers_read_only",
    "description": "Customers - read-only (Read-only access to customers, wishlists, and subscribers)"
  }, {
    "name": "marketing_modify",
    "description": "Marketing - modify (Read and modify marketing data including coupons and gift certificates)"
  }, {
    "name": "marketing_read_only",
    "description": "Marketing - read-only (Read-only access to marketing data)"
  }, {
    "name": "content_modify",
    "description": "Content - modify (Read and modify store content including pages and scripts)"
  }, {
    "name": "content_read_only",
    "description": "Content - read-only (Read-only access to store content)"
  }, {
    "name": "information_settings_modify",
    "description": "Information & settings - modify (Read and modify store information, currencies, shipping, tax, and geography)"
  }, {
    "name": "information_settings_read_only",
    "description": "Information & settings - read-only (Read-only access to store information, currencies, shipping, tax, and geography)"
  }, {
    "name": "store_inventory_modify",
    "description": "Store Inventory - modify (Read and modify inventory locations and levels)"
  }, {
    "name": "store_inventory_read_only",
    "description": "Store Inventory - read-only (Read-only access to inventory data)"
  }, {
    "name": "channel_settings_modify",
    "description": "Channel settings - modify (Read and modify channel settings)"
  }, {
    "name": "channel_settings_read_only",
    "description": "Channel settings - read-only (Read-only access to channel settings)"
  }, {
    "name": "themes_modify",
    "description": "Themes - modify (Read and modify store themes)"
  }, {
    "name": "themes_read_only",
    "description": "Themes - read-only (Read-only access to themes)"
  }, {
    "name": "sites_routes_modify",
    "description": "Sites & routes - modify (Read and modify site configurations)"
  }, {
    "name": "sites_routes_read_only",
    "description": "Sites & routes - read-only (Read-only access to site configurations)"
  }, {
    "name": "get_payment_methods",
    "description": "Get payment methods - read-only (Read-only access to payment methods)"
  }, {
    "name": "carts_modify",
    "description": "Carts - modify (Read and modify shopping carts)"
  }, {
    "name": "carts_read_only",
    "description": "Carts - read-only (Read-only access to shopping carts)"
  }, {
    "name": "checkouts_modify",
    "description": "Checkouts - modify (Read and modify checkouts)"
  }, {
    "name": "checkouts_read_only",
    "description": "Checkouts - read-only (Read-only access to checkouts)"
  }]
};

<ConnectorPage connector={connector} />
