원클릭으로
stripe-import
Import Stripe payment CSV exports with charges, fees, and refund handling.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Import Stripe payment CSV exports with charges, fees, and refund handling.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Calculate break-even revenue by separating fixed and variable costs.
Project future cash flow using historical trends and recurring patterns.
Analyze revenue and costs per client to find your most profitable accounts.
Monitor 1099 contractor payments and flag $600 threshold.
Track unpaid invoices by age bucket and flag overdue payments.
Run a monthly bookkeeping close checklist with reconciliation.
| name | stripe-import |
| description | Import Stripe payment CSV exports with charges, fees, and refund handling. |
Import transaction data from Stripe CSV exports into Open Accountant. Handles charges (revenue), Stripe processing fees, and refunds as separate line items. Payouts are skipped since they appear in your bank import and would cause double-counting.
transaction_search — check for existing Stripe transactions to prevent duplicatescategorize — assign categories to imported Stripe transactionsexport_transactions — export reconciled Stripe data| Stripe CSV Column | Open Accountant Field | Notes |
|---|---|---|
id | reference_id | Stripe charge ID (ch_xxx) |
Created (UTC) | date | Transaction date |
Description | description | Customer-facing description |
Amount | amount | Gross charge amount (positive = income) |
Fee | amount (separate row) | Stripe processing fee (negative = expense) |
Net | — | Calculated field, not stored directly |
Currency | currency | 3-letter ISO code |
Status | — | Only import succeeded charges |
Customer Email | notes | Optional, stored in notes |
Type is charge and Status is succeededType is refundType is payout or transfer (these appear in bank imports)Status is failed or pendingAmount column, category "Revenue:Stripe"Fee column, category "Fees:Payment Processing"id column) as the reference.To work with Stripe exports manually:
id, Created (UTC), Description, Amount, Fee, Net, Currency, Status, Type, Customer EmailGross Revenue: =SUMIFS(Amount, Type, "charge", Status, "succeeded")
Total Fees: =SUMIFS(Fee, Type, "charge", Status, "succeeded")
Total Refunds: =ABS(SUMIFS(Amount, Type, "refund"))
Net Revenue: =GrossRevenue - TotalFees - TotalRefunds
Effective Rate: =TotalFees / GrossRevenue * 100
Net column values between payout dates.