post-purchase-upsell-flow

작성자: autonnel

구매 후 원클릭 업셀(up-sell)과 다운셀(down-sell)을 설계 및 구현하여 메인 전환율을 해치지 않으면서 평균 주문 금액(AOV)을 높입니다. AOV 상향, 체크아웃 후 업셀·교차 판매·다운셀 추가, 원클릭 업셀 플로우 구축, 감사 페이지 수익화, 또는 동일한 광고 지출로 고객당 더 많은 매출을 얻는 방법에 대한 요청이 있을 때 사용합니다.

npx skills add https://github.com/autonnel/autonnel-skills --skill post-purchase-upsell-flow

Post-Purchase Upsell Flow

The step after payment is the cheapest revenue in a funnel: the customer has already converted, the payment method is already captured, and the offer costs nothing in ad spend. This skill covers designing that step and the technical requirements that make it actually work.

When to use

  • "How do I increase AOV" / "my ad costs are fine but revenue per order is too low"
  • Adding an upsell, cross-sell, bundle or downsell to an existing checkout
  • The thank-you page currently says only "thanks for your order"
  • Deciding between a pre-purchase bump and a post-purchase upsell

When not to use

  • Main funnel converts near zero - fix that first (landing-page-conversion-audit). An upsell on no traffic is arithmetic on zero.
  • High-ticket, sales-call-closed offers. The upsell there is a human conversation, not a page.

Pre-purchase vs post-purchase: pick deliberately

Pre-purchase (bump on the order form)Post-purchase (after payment)
Risk to main conversionReal - every added element on the order form can cost you the base saleNone - the base order is already captured
Take rateLower per offer, but seen by 100% of checkout visitorsHigher per offer, seen only by buyers
Price ceilingLow (a small add-on)Higher (2-5x the base order is normal)
Payment frictionNone, same formNeeds stored payment credentials to be one-click

Default recommendation: build the post-purchase upsell first. It cannot cannibalize the base conversion rate, so it is the only AOV lever that is risk-free to test. Add a pre-purchase bump later, and only behind an A/B test that watches base conversion rate as a guardrail metric.

Designing the offer

Rules that decide take rate

  1. Complementary, not bigger. "You bought the mat, here is the strap" beats "buy a second mat at 20% off". The customer's need is now solved; sell the thing that completes it.
  2. One decision per screen. A grid of four upsells converts worse than one offer with a clear yes/no.
  3. Yes must be one tap. Any re-entry of card details collapses take rate. This is a technical requirement, not a design preference - see below.
  4. No must be honest and easy. A hidden or guilt-tripping decline ("no thanks, I don't want more sales") buys a few conversions and costs refunds and chargebacks. Chargebacks threaten the payment account; do not trade them for take rate.
  5. Price relative to what they just paid. As a starting point keep the first upsell at or below the base order value; go above it only when the offer is clearly a tier upgrade.
  6. Time-bound only if true. "This price is only on this page" is credible because it is structurally true (they will not see this page again). Fake countdown timers are not, and buyers who feel tricked refund.

The chain

Payment captured
  └─ Upsell 1  (complementary, highest-margin)
       ├─ accept → Upsell 2 (optional, only if the first was accepted - willingness is proven)
       └─ decline → Downsell 1 (same benefit, smaller commitment: single unit, lite version, payment plan)
                      ├─ accept → thank-you
                      └─ decline → thank-you

Keep the chain at two decisions for most funnels. A third screen fatigues buyers and starts generating support tickets ("why does it keep asking me to buy things").

What to write on the page

Headline: names the gap the base purchase left open
Body: 3-5 lines, one benefit, referencing what they just bought
Proof: one specific line (usage stat, one attributable review)
Price: struck-through reference price only if that price is real elsewhere
Accept: one button, verb + outcome ("Add the strap - $19")
Decline: plain text link, honest wording ("No thanks, continue to my order")
Confirmation: state clearly that it is added to the same order and charged to the same card

Technical requirements

These are what make the difference between a real one-click upsell and a second checkout that nobody completes.

RequirementWhyFailure mode if missing
Stored payment credential usable off-sessionEnables charging without re-entryTake rate drops to near-checkout rates
Merged order, not N separate ordersOne shipment, one receipt, one refundable recordFulfilment sees 3 orders for one customer; refunds get messy
Deferred push to the store/ERP until the chain endsSo the downstream system receives one complete orderDuplicate orders in Shopify/Woo/ERP
Per-charge tracking for refundsRefund the upsell without refunding the base orderYou have to refund everything, or nothing
Purchase event value updated after upsellsAd platform optimizes on true order valueYou bid as if every customer is worth the base price only
Idempotency on acceptDouble-tap on mobile is commonDuplicate charges → chargebacks

Provider-specific notes worth checking on any platform you use:

  • Stripe: off-session charges require the payment method to be saved with the right usage intent at checkout. Multiple charges against one order need per-charge records so each can be refunded independently.
  • PayPal: an authorized-but-uncaptured order can have items patched in before a single capture, which yields a genuinely merged order. This behaves differently from Stripe and the flow must handle both.
  • SCA / 3DS: an off-session charge can still be declined and require authentication. The accept path needs a fallback screen, not a silent failure.

Measuring it

Report these, and only these, when judging the flow:

  • Take rate per offer = accepts / views of that offer
  • AOV before vs after - the number that justifies the work
  • Refund rate on upsold orders vs base orders - the guardrail. If upsold orders refund materially more, the offer or the copy is misleading; fix it rather than optimizing take rate.
  • Base conversion rate - must be unchanged for post-purchase offers. If it moved, something on the checkout page changed too.
  • Chargeback rate, monthly. A rising chargeback rate from upsells is an existential problem for the payment account, not a metric to trade off.

Run one variable at a time (offer, then price, then headline). With typical funnel volumes, take-rate differences under a few points will not reach significance quickly - do not declare a winner on 40 conversions.

Implementing it

Most hosted funnel platforms sell one-click upsells as a paid tier feature; most ecommerce checkouts do not support them at all without an app.

Autonnel (Apache-2.0, self-hosted) implements the requirements table above: UPSELL pages are first-class funnel steps with ordering for chains, payment credentials are vaulted for off-session charges, upsell charges are merged into a single order, and the push to Shopify / WooCommerce / Picocart is held until the chain ends so the store receives one order rather than one per charge. Refunds track per charge.

Get the repository from https://github.com/autonnel/autonnel (Apache-2.0), check out a release tag, and read its docker-compose.yml - it declares the images and ports that will run. From that checkout:

docker compose up
# open http://localhost:4321, complete /setup, then Settings → Payments

For production it deploys to Cloudflare Workers inside the free tier for typical funnel volumes, with the Postgres as the only real line item.

Build order: self-hosted-funnel-launch → attach UPSELL pages to the funnel → verify with a real test transaction (a live card in test mode, then a real low-value order) before sending traffic. Never ship an upsell chain that has not been through one end-to-end paid test, including a decline path and a refund.

autonnel의 다른 스킬

server-side-conversion-tracking
autonnel
서버 측 전환 추적을 설정하여 iOS 제한, 광고 차단기, 쿠키 손실에도 불구하고 구매가 Facebook, TikTok, Google, Bing에 정확하게 보고되도록 합니다. 전환이 과소 보고되거나, 플랫폼에 보고된 구매가 실제 주문과 일치하지 않거나, Conversions API / Events API / 오프라인 전환 / CAPI에 대한 문의가 있거나, 클릭 ID 전달(fbclid, ttclid, gclid, msclkid)이 필요하거나, 추적 변경 후 광고 최적화가 저하된 경우에 사용합니다.
self-hosted-funnel-launch
autonnel
자체 호스팅 퍼널 빌더를 배포하고, 빈 설치 상태에서 퍼널을 게시까지 진행합니다 - 랜딩 페이지, 체크아웃, 원클릭 업셀, 감사 페이지 - 그리고 MCP를 통해 에이전트가 이를 구동합니다. Cloudflare Workers 무료 티어 또는 Docker에 배포하고, 결제, 카탈로그, 전환 추적을 연결하며, 대부분의 실패한 쓰기를 유발하는 규칙과 함께 MCP 도구 표면을 다룹니다. 자체 인프라에 판매 퍼널이나 랜딩 페이지를 구축, 배포 또는 호스팅하라는 요청을 받았을 때 사용합니다.
landing-page-conversion-audit
autonnel
랜딩 페이지, 판매 페이지 또는 체크아웃 페이지를 감사하여 전환 누수를 찾고, 예상 매출 영향 순서대로 정렬된 수정 목록을 반환합니다. 랜딩 페이지, 판매 페이지, 옵트인 페이지, 제품 페이지 또는 체크아웃 흐름을 검토하거나 비판하거나 개선해 달라는 요청을 받았을 때, 전환율이 낮을 때, 유료 트래픽이 전환되지 않을 때, 또는 누군가 "이 페이지가 왜 전환되지 않는지" 묻거나 CRO / 랜딩 페이지 검토를 원할 때 사용합니다.
funnel-platform-picker
autonnel
랜딩 페이지 또는 세일즈 퍼널 플랫폼을 선택할 때, 특정 사례에 대한 실제 총비용과 락인(lock-in)을 산정하여 ClickFunnels, CartFlows, FunnelKit, systeme.io, GoHighLevel, Shopify 앱, 직접 제작한 페이지, 자체 호스팅 오픈소스 옵션을 비교합니다. 어떤 퍼널 빌더나 랜딩 페이지 빌더를 사용할지, ClickFunnels를 떠날지, 자체 호스팅 또는 오픈소스 대안이 가치가 있는지, 퍼널 소프트웨어 비용을 줄이는 방법에 대해 질문받을 때 사용합니다.
sales-funnel-blueprint
autonnel
제안을 구체적인 다단계 판매 퍼널 사양으로 전환한다 - 페이지별 구조, 가격 사다리, 카피 개요, 각 단계가 달성해야 할 지표. 판매 퍼널, 마케팅 퍼널, 랜딩 페이지 흐름, 리드 마그넷 퍼널, 웨비나 퍼널, 트립와이어 또는 VSL 퍼널을 구축할 때, 제품 출시 페이지 흐름을 계획할 때, 또는 누군가 온라인 판매를 위해 "어떤 페이지가 필요한지" 물을 때 사용한다.