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

# Stripe

> 133 actions available for Stripe 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": "stripe",
  "name": "Stripe",
  "icon": "https://stackone-logos.com/api/stripe/filled/png",
  "authentication": [{
    "label": "API Key",
    "description": "Use your Stripe Secret API Key or Restricted API Key for authentication. Find these in your Stripe Dashboard under Devel...",
    "configGuide": "connectors/stripe/guides/link-account/api-key",
    "setupGuide": "connectors/stripe/guides/auth-config/api-key"
  }],
  "actions": [{
    "id": "stripe_list_application_fees",
    "label": "List Application Fees",
    "description": "List all application fees collected on your platform"
  }, {
    "id": "stripe_get_application_fee",
    "label": "Get Application Fee",
    "description": "Retrieve an application fee by ID"
  }, {
    "id": "stripe_get_balance",
    "label": "Get Balance",
    "description": "Retrieve the current account balance showing available and pending amounts by currency for the authenticated Stripe acco..."
  }, {
    "id": "stripe_list_balance_transactions",
    "label": "List Balance Transactions",
    "description": "List all balance transactions that have affected the Stripe account balance, including charges, refunds, transfers, payo..."
  }, {
    "id": "stripe_get_balance_transaction",
    "label": "Get Balance Transaction",
    "description": "Retrieve detailed information about a specific balance transaction by its unique identifier, including amount, fee break..."
  }, {
    "id": "stripe_list_charges",
    "label": "List Charges",
    "description": "Retrieve a paginated list of all charge objects, sorted by creation date with advanced filtering options for customer, p..."
  }, {
    "id": "stripe_get_charge",
    "label": "Get Charge",
    "description": "Retrieve complete details of a specific charge object by its unique identifier, including payment status, amount, custom..."
  }, {
    "id": "stripe_update_charge",
    "label": "Update Charge",
    "description": "Update mutable properties of an existing charge including customer association, description, metadata, receipt email, sh..."
  }, {
    "id": "stripe_capture_charge",
    "label": "Capture Charge",
    "description": "Capture the funds of an existing uncaptured charge with optional partial amount capture, statement descriptors, and tran..."
  }, {
    "id": "stripe_search_charges",
    "label": "Search Charges",
    "description": "Perform advanced search across charge objects using Stripe's powerful query language with support for complex filters on..."
  }, {
    "id": "stripe_create_checkout_session",
    "label": "Create Checkout Session",
    "description": "Create a Checkout Session via POST /checkout/sessions to initiate a payment, subscription, or setup flow using Stripe-ho..."
  }, {
    "id": "stripe_list_checkout_sessions",
    "label": "List Checkout Sessions",
    "description": "List all Checkout Sessions with optional filters"
  }, {
    "id": "stripe_get_checkout_session",
    "label": "Get Checkout Session",
    "description": "Retrieve a Checkout Session by ID"
  }, {
    "id": "stripe_expire_checkout_session",
    "label": "Expire Checkout Session",
    "description": "Expire an open Checkout Session to cancel the payment process"
  }, {
    "id": "stripe_list_checkout_session_line_items",
    "label": "List Checkout Session Line Items",
    "description": "List line items for a Checkout Session"
  }, {
    "id": "stripe_create_coupon",
    "label": "Create Coupon",
    "description": "Create a discount coupon for use on subscriptions and invoices"
  }, {
    "id": "stripe_list_coupons",
    "label": "List Coupons",
    "description": "List all coupons with optional filters"
  }, {
    "id": "stripe_get_coupon",
    "label": "Get Coupon",
    "description": "Retrieve a coupon by ID"
  }, {
    "id": "stripe_update_coupon",
    "label": "Update Coupon",
    "description": "Update a coupon's metadata or name"
  }, {
    "id": "stripe_delete_coupon",
    "label": "Delete Coupon",
    "description": "Delete a coupon permanently"
  }, {
    "id": "stripe_list_credit_notes",
    "label": "List Credit Notes",
    "description": "List all credit notes for invoice adjustments and refunds"
  }, {
    "id": "stripe_get_credit_note",
    "label": "Get Credit Note",
    "description": "Retrieve a credit note by ID"
  }, {
    "id": "stripe_list_customers",
    "label": "List Customers",
    "description": "Retrieve a paginated list of all customers in your Stripe account, sorted by creation date with the most recent customer..."
  }, {
    "id": "stripe_get_customer",
    "label": "Get Customer",
    "description": "Retrieve complete details for a specific customer by their unique Stripe customer ID"
  }, {
    "id": "stripe_create_customer",
    "label": "Create Customer",
    "description": "Create a new customer record in Stripe with optional payment methods, billing information, and tax settings"
  }, {
    "id": "stripe_update_customer",
    "label": "Update Customer",
    "description": "Update an existing customer's information, payment settings, or metadata while preserving unchanged fields"
  }, {
    "id": "stripe_delete_customer",
    "label": "Delete Customer",
    "description": "Permanently delete a customer record and immediately cancel all active subscriptions (irreversible operation)"
  }, {
    "id": "stripe_search_customers",
    "label": "Search Customers",
    "description": "Search for customers using Stripe's powerful query syntax supporting filters on email, name, phone, metadata, and creati..."
  }, {
    "id": "stripe_list_disputes",
    "label": "List Disputes",
    "description": "List all disputes with optional filters for monitoring chargebacks and fraud"
  }, {
    "id": "stripe_get_dispute",
    "label": "Get Dispute",
    "description": "Retrieve a dispute by ID"
  }, {
    "id": "stripe_update_dispute",
    "label": "Update Dispute",
    "description": "Update a dispute with evidence or metadata"
  }, {
    "id": "stripe_close_dispute",
    "label": "Close Dispute",
    "description": "Close a dispute to accept the chargeback"
  }, {
    "id": "stripe_list_events",
    "label": "List Events",
    "description": "List all events for audit trail of account changes"
  }, {
    "id": "stripe_get_event",
    "label": "Get Event",
    "description": "Retrieve an event by ID"
  }, {
    "id": "stripe_list_files",
    "label": "List Files",
    "description": "List all files uploaded to Stripe"
  }, {
    "id": "stripe_get_file",
    "label": "Get File",
    "description": "Retrieve a file by ID"
  }, {
    "id": "stripe_list_invoices",
    "label": "List Invoices",
    "description": "Retrieve a paginated list of all invoices with optional filtering by customer, subscription, status, and collection meth..."
  }, {
    "id": "stripe_get_invoice",
    "label": "Get Invoice",
    "description": "Retrieve complete details of a specific invoice including line items, payment status, customer information, and billing..."
  }, {
    "id": "stripe_create_invoice",
    "label": "Create Invoice",
    "description": "Creates a draft invoice in Stripe via POST /v1/invoices (form-encoded), returning a fully modifiable invoice object that..."
  }, {
    "id": "stripe_update_invoice",
    "label": "Update Invoice",
    "description": "Modify an existing draft invoice by updating collection method, payment terms, tax settings, custom fields, or metadata"
  }, {
    "id": "stripe_delete_invoice",
    "label": "Delete Invoice",
    "description": "Permanently delete a draft invoice including subscription-generated invoices, with no possibility of recovery"
  }, {
    "id": "stripe_finalize_invoice",
    "label": "Finalize Invoice",
    "description": "Convert a draft invoice to finalized status, making it ready for payment collection, email delivery, or programmatic pro..."
  }, {
    "id": "stripe_pay_invoice",
    "label": "Pay Invoice",
    "description": "Programmatically charge an invoice using the customer's default payment source or a specified payment method with suppor..."
  }, {
    "id": "stripe_send_invoice",
    "label": "Send Invoice",
    "description": "Email a finalized invoice to the customer with a secure payment link and PDF attachment for manual payment collection"
  }, {
    "id": "stripe_void_invoice",
    "label": "Void Invoice",
    "description": "Cancel an open or uncollectible invoice permanently, preventing any future payment collection while maintaining historic..."
  }, {
    "id": "stripe_mark_invoice_uncollectible",
    "label": "Mark Invoice Uncollectible",
    "description": "Mark an open invoice as uncollectible to stop payment collection attempts while preserving the invoice for bad debt trac..."
  }, {
    "id": "stripe_search_invoices",
    "label": "Search Invoices",
    "description": "Execute complex invoice searches using Stripe's query language to filter by customer, status, metadata, amounts, dates,..."
  }, {
    "id": "stripe_attach_payment",
    "label": "Attach Payment To Invoice",
    "description": "Link an existing PaymentIntent or out-of-band payment record to an invoice, automatically crediting payments when they s..."
  }, {
    "id": "stripe_create_invoice_item",
    "label": "Create Invoice Item",
    "description": "Create a line item to be added to an invoice, either immediately attached to a draft invoice or pending for automatic in..."
  }, {
    "id": "stripe_list_invoice_items",
    "label": "List Invoice Items",
    "description": "List all invoice items with optional filters for customer, invoice, or pending status"
  }, {
    "id": "stripe_get_upcoming_invoice",
    "label": "Get Upcoming Invoice",
    "description": "Preview the next invoice before billing"
  }, {
    "id": "stripe_list_payment_intents",
    "label": "List Payment Intents",
    "description": "Retrieve a paginated list of all payment intents for your account, with optional filters for customer, creation date, an..."
  }, {
    "id": "stripe_get_payment_intent",
    "label": "Get Payment Intent",
    "description": "Retrieve complete details of a specific payment intent by ID, including status, amount, payment method, and all associat..."
  }, {
    "id": "stripe_create_payment_intent",
    "label": "Create Payment Intent",
    "description": "Create a new payment intent to collect payment from a customer, supporting multiple payment methods, automatic confirmat..."
  }, {
    "id": "stripe_update_payment_intent",
    "label": "Update Payment Intent",
    "description": "Modify properties of an existing unconfirmed payment intent such as amount, payment method, customer, or metadata withou..."
  }, {
    "id": "stripe_confirm_payment_intent",
    "label": "Confirm Payment Intent",
    "description": "Confirm customer intent to pay with the specified payment method, initiating payment processing and triggering authentic..."
  }, {
    "id": "stripe_capture_payment_intent",
    "label": "Capture Payment Intent",
    "description": "Capture authorized funds from a PaymentIntent in requires_capture status (created with capture_method=manual), supportin..."
  }, {
    "id": "stripe_cancel_payment_intent",
    "label": "Cancel Payment Intent",
    "description": "Cancel a payment intent that has not yet been captured, releasing any authorized funds and preventing further payment at..."
  }, {
    "id": "stripe_search_payment_intents",
    "label": "Search Payment Intents",
    "description": "Search payment intents using Stripe's powerful query language to filter by customer, status, amount, metadata, and times..."
  }, {
    "id": "stripe_increment_authorization",
    "label": "Increment Authorization",
    "description": "Increase the authorized amount on an uncaptured payment intent, useful for scenarios where final charges exceed initial..."
  }, {
    "id": "stripe_apply_customer_balance",
    "label": "Apply Customer Balance",
    "description": "Apply funds from a customer's cash balance to reconcile a payment intent, enabling wallet-based or prepaid payment scena..."
  }, {
    "id": "stripe_verify_microdeposits",
    "label": "Verify Microdeposits",
    "description": "Verify bank account ownership by confirming microdeposit amounts or descriptor codes, completing the ACH or bank transfe..."
  }, {
    "id": "stripe_list_payment_intent_line_items",
    "label": "List Payment Intent Line Items",
    "description": "Retrieve itemized breakdown of products, quantities, and amounts for a payment intent, providing transaction-level detai..."
  }, {
    "id": "stripe_list_payment_links",
    "label": "List Payment Links",
    "description": "List all payment links for no-code payment pages"
  }, {
    "id": "stripe_get_payment_link",
    "label": "Get Payment Link",
    "description": "Retrieve a payment link by ID"
  }, {
    "id": "stripe_list_payment_link_line_items",
    "label": "List Payment Link Line Items",
    "description": "List line items for a payment link"
  }, {
    "id": "stripe_list_payment_methods",
    "label": "List Payment Methods",
    "description": "Retrieve all payment methods associated with a specific customer account"
  }, {
    "id": "stripe_get_payment_method",
    "label": "Get Payment Method",
    "description": "Retrieve detailed information about a specific payment method using its unique identifier"
  }, {
    "id": "stripe_create_payment_method",
    "label": "Create Payment Method",
    "description": "Create a new payment method object for future use with customers and transactions"
  }, {
    "id": "stripe_update_payment_method",
    "label": "Update Payment Method",
    "description": "Modify billing details, metadata, and limited card information for an existing payment method"
  }, {
    "id": "stripe_attach_payment_method",
    "label": "Attach Payment Method",
    "description": "Link a payment method to a customer account for reuse in future transactions"
  }, {
    "id": "stripe_detach_payment_method",
    "label": "Detach Payment Method",
    "description": "Remove the association between a payment method and its customer account"
  }, {
    "id": "stripe_list_payouts",
    "label": "List Payouts",
    "description": "List all payouts with optional filters for tracking bank transfers"
  }, {
    "id": "stripe_get_payout",
    "label": "Get Payout",
    "description": "Retrieve a payout by ID"
  }, {
    "id": "stripe_list_prices",
    "label": "List Prices",
    "description": "Retrieve a paginated list of all prices in your Stripe account with flexible filtering options"
  }, {
    "id": "stripe_get_price",
    "label": "Get Price",
    "description": "Fetch detailed information about a specific price using its unique identifier"
  }, {
    "id": "stripe_create_price",
    "label": "Create Price",
    "description": "Create a new one-time or recurring price with advanced configuration including tiered pricing, metered billing, and mult..."
  }, {
    "id": "stripe_update_price",
    "label": "Update Price",
    "description": "Update mutable properties of an existing price including active status, metadata, nickname, and tax behavior"
  }, {
    "id": "stripe_search_prices",
    "label": "Search Prices",
    "description": "Perform advanced full-text search across prices using Stripe's powerful search query syntax for complex filtering requir..."
  }, {
    "id": "stripe_list_products",
    "label": "List Products",
    "description": "Retrieve a paginated list of all products in your Stripe account with flexible filtering options including active status..."
  }, {
    "id": "stripe_get_product",
    "label": "Get Product",
    "description": "Fetch complete details of a single product using its unique identifier, including pricing information, images, metadata,..."
  }, {
    "id": "stripe_create_product",
    "label": "Create Product",
    "description": "Create a new product in your Stripe catalog with comprehensive configuration including pricing, images, shipping details..."
  }, {
    "id": "stripe_update_product",
    "label": "Update Product",
    "description": "Modify an existing product's properties including name, description, images, pricing, active status, and shipping config..."
  }, {
    "id": "stripe_delete_product",
    "label": "Delete Product",
    "description": "Permanently remove a product from your Stripe catalog, only allowed for products with no associated prices (consider dea..."
  }, {
    "id": "stripe_search_products",
    "label": "Search Products",
    "description": "Perform advanced product searches using Stripe's powerful query language with support for field-specific queries, fuzzy..."
  }, {
    "id": "stripe_create_promotion_code",
    "label": "Create Promotion Code",
    "description": "Create a customer-facing promotion code linked to a coupon"
  }, {
    "id": "stripe_list_promotion_codes",
    "label": "List Promotion Codes",
    "description": "Retrieve a paginated list of all promotion codes with optional filtering by coupon, customer, active status, code, and c..."
  }, {
    "id": "stripe_get_promotion_code",
    "label": "Get Promotion Code",
    "description": "Retrieve a promotion code by ID"
  }, {
    "id": "stripe_list_radar_value_lists",
    "label": "List Radar Value Lists",
    "description": "List all Radar value lists for fraud prevention"
  }, {
    "id": "stripe_get_radar_value_list",
    "label": "Get Radar Value List",
    "description": "Retrieve a Radar value list by ID"
  }, {
    "id": "stripe_create_radar_value_list",
    "label": "Create Radar Value List",
    "description": "Create a new Radar value list for fraud prevention"
  }, {
    "id": "stripe_update_radar_value_list",
    "label": "Update Radar Value List",
    "description": "Update a Radar value list"
  }, {
    "id": "stripe_delete_radar_value_list",
    "label": "Delete Radar Value List",
    "description": "Delete a Radar value list"
  }, {
    "id": "stripe_list_refunds",
    "label": "List Refunds",
    "description": "Retrieve a paginated list of all refunds with optional filtering by charge, payment intent, or creation date"
  }, {
    "id": "stripe_get_refund",
    "label": "Get Refund",
    "description": "Retrieve complete details of a specific refund including status, amount, reason, and associated charge or payment intent..."
  }, {
    "id": "stripe_create_refund",
    "label": "Create Refund",
    "description": "Issue a full or partial refund for a charge or payment intent with optional reason tracking and metadata"
  }, {
    "id": "stripe_update_refund",
    "label": "Update Refund",
    "description": "Update the metadata of an existing refund for internal tracking and organizational purposes"
  }, {
    "id": "stripe_cancel_refund",
    "label": "Cancel Refund",
    "description": "Cancel a pending refund that requires customer action before completion, preventing the refund from being processed"
  }, {
    "id": "stripe_create_setup_intent",
    "label": "Create Setup Intent",
    "description": "Create a SetupIntent to save a payment method for future payments without charging the customer"
  }, {
    "id": "stripe_list_setup_intents",
    "label": "List Setup Intents",
    "description": "List all SetupIntents with optional filters"
  }, {
    "id": "stripe_get_setup_intent",
    "label": "Get Setup Intent",
    "description": "Retrieve a SetupIntent by ID"
  }, {
    "id": "stripe_cancel_setup_intent",
    "label": "Cancel Setup Intent",
    "description": "Cancel a SetupIntent that is not yet confirmed"
  }, {
    "id": "stripe_list_shipping_rates",
    "label": "List Shipping Rates",
    "description": "List all shipping rates configured for checkout"
  }, {
    "id": "stripe_get_shipping_rate",
    "label": "Get Shipping Rate",
    "description": "Retrieve a shipping rate by ID"
  }, {
    "id": "stripe_create_shipping_rate",
    "label": "Create Shipping Rate",
    "description": "Create a new shipping rate for checkout"
  }, {
    "id": "stripe_update_shipping_rate",
    "label": "Update Shipping Rate",
    "description": "Update a shipping rate"
  }, {
    "id": "stripe_list_subscriptions",
    "label": "List Subscriptions",
    "description": "Retrieve a paginated list of all customer subscriptions with optional filtering by status, customer, price, and billing..."
  }, {
    "id": "stripe_get_subscription",
    "label": "Get Subscription",
    "description": "Retrieve complete details of a specific subscription including pricing, billing cycle, payment status, and customer info..."
  }, {
    "id": "stripe_create_subscription",
    "label": "Create Subscription",
    "description": "Creates a recurring subscription for a customer via POST /v1/subscriptions (form-encoded), supporting multi-item pricing..."
  }, {
    "id": "stripe_update_subscription",
    "label": "Update Subscription",
    "description": "Modify an existing subscription's pricing, payment method, billing configuration, or subscription items with optional pr..."
  }, {
    "id": "stripe_cancel_subscription",
    "label": "Cancel Subscription",
    "description": "Immediately terminate a subscription, stop all future billing, and optionally generate a final prorated invoice for the..."
  }, {
    "id": "stripe_resume_subscription",
    "label": "Resume Subscription",
    "description": "Reactivate a paused subscription that was paused through a subscription schedule, restoring billing and transitioning st..."
  }, {
    "id": "stripe_migrate_subscription",
    "label": "Migrate Subscription",
    "description": "Performs a one-way migration of a subscription from classic billing mode to flexible billing mode, enabling advanced pro..."
  }, {
    "id": "stripe_search_subscriptions",
    "label": "Search Subscriptions",
    "description": "Perform advanced full-text search across subscriptions using Stripe's query language to find subscriptions by customer,..."
  }, {
    "id": "stripe_list_subscription_items",
    "label": "List Subscription Items",
    "description": "List individual line items within a subscription"
  }, {
    "id": "stripe_get_subscription_item",
    "label": "Get Subscription Item",
    "description": "Retrieve a subscription item by ID"
  }, {
    "id": "stripe_create_tax_rate",
    "label": "Create Tax Rate",
    "description": "Create a tax rate for subscriptions and invoices"
  }, {
    "id": "stripe_list_tax_rates",
    "label": "List Tax Rates",
    "description": "List all tax rates with optional filters"
  }, {
    "id": "stripe_get_tax_rate",
    "label": "Get Tax Rate",
    "description": "Retrieve a tax rate by ID"
  }, {
    "id": "stripe_update_tax_rate",
    "label": "Update Tax Rate",
    "description": "Update a tax rate's properties"
  }, {
    "id": "stripe_create_test_clock",
    "label": "Create Test Clock",
    "description": "Create a test clock for subscription time simulation"
  }, {
    "id": "stripe_list_test_clocks",
    "label": "List Test Clocks",
    "description": "List all test clocks"
  }, {
    "id": "stripe_get_test_clock",
    "label": "Get Test Clock",
    "description": "Retrieve a test clock by ID"
  }, {
    "id": "stripe_advance_test_clock",
    "label": "Advance Test Clock",
    "description": "Advance a test clock to a new frozen time"
  }, {
    "id": "stripe_delete_test_clock",
    "label": "Delete Test Clock",
    "description": "Delete a test clock"
  }, {
    "id": "stripe_list_transfers",
    "label": "List Transfers",
    "description": "List all transfers to connected accounts"
  }, {
    "id": "stripe_get_transfer",
    "label": "Get Transfer",
    "description": "Retrieve a transfer by ID"
  }, {
    "id": "stripe_create_transfer",
    "label": "Create Transfer",
    "description": "Create a transfer to a connected account"
  }, {
    "id": "stripe_update_transfer",
    "label": "Update Transfer",
    "description": "Update a transfer's metadata or description"
  }, {
    "id": "stripe_create_webhook_endpoint",
    "label": "Create Webhook Endpoint",
    "description": "Create a webhook endpoint to receive event notifications"
  }, {
    "id": "stripe_list_webhook_endpoints",
    "label": "List Webhook Endpoints",
    "description": "List all webhook endpoints"
  }, {
    "id": "stripe_get_webhook_endpoint",
    "label": "Get Webhook Endpoint",
    "description": "Retrieve a webhook endpoint by ID"
  }, {
    "id": "stripe_delete_webhook_endpoint",
    "label": "Delete Webhook Endpoint",
    "description": "Delete a webhook endpoint"
  }],
  "releaseStage": "preview",
  "categories": ["payments", "crm", "analytics"],
  "documentation": {
    "references": [{
      "title": "Stripe API Reference",
      "url": "https://docs.stripe.com/api",
      "description": "Full REST API reference for Stripe."
    }]
  }
};

<ConnectorPage connector={connector} />
