Pular para o conteúdo
Criar conta
ou
Entrar
O logotipo da documentação da Stripe
/
Pergunte à IA
Criar conta
Login
Comece já
Pagamentos
Receita
Plataformas e marketplaces
Gestão de valores
Developer resources
Visão geral
Sobre os pagamentos da Stripe
Atualize sua integração
Análise de pagamentos
Pagamentos online
Visão geralEncontre seu caso de usoPagamentos gerenciados
Usar Payment Links
    Visão geral
    Criar um link de pagamento
    Compartilhe um link de pagamento
    Monitorar um link de pagamento
    Criar um botão comprar
    Personalize o checkout para usar links de pagamento
    Solicitar endereços
    Cobrar a tarifa de envio
    Códigos promocionais, itens opcionais e upsells
    Após receber um pagamento de um link de pagamento
    Use a API para criar e gerenciar um link de pagamento
Crie uma página de checkout
Criar uma integração avançada
Crie uma integração no aplicativo
Formas de pagamento
Adicionar formas de pagamento
Gerenciar formas de pagamento
Checkout mais rápido com o Link
Interfaces de pagamento
Payment Links
Checkout
Web Elements
Elements no aplicativo
Cenários de pagamento
Gerenciar várias moedas
Fluxos de pagamento personalizados
Aquisição flexível
Orquestração
Pagamentos presenciais
Terminal
Beyond payments
Incorporate your company
Cripto
Financial Connections
Climate
Página inicialPagamentosUse Payment Links

Promotion codes, upsells, and optional items

Use Payment Links to add promotion codes, upsells, and optional items to offer discounts and help market related products.

Copiar página

You can use Payment Links and the Stripe Dashboard to offer discounts, allow customers to upgrade their subscriptions, and market related products during checkout.

Add promotion codes

When you create a payment link in the Stripe Dashboard, you have the option of adding promotion codes. Customers can enter these codes on their payment page to apply discounts on their purchases.

Create a promotion code in the Dashboard by creating a coupon and then turning it into a customer-facing promotion code. Use the prefilled_promo_code URL parameter to prefill a promotion code when sharing a payment link. Learn more about how to generate promotion codes for Checkout.

Observação

By default, payment links create guest customers for one-time payments. As a result, promotion codes that are only eligible for first-time orders won’t work as expected.

Increase revenue potential with subscription upsells

Subscription upsells give customers the option to upgrade to a longer-term plan during checkout, such as progressing from monthly to yearly. This strategy might enhance your average order value and improve your cash flow.

You can configure a subscription upsell in the Dashboard on the Price detail page. You can view the details for a price by clicking on one you’ve added to a product. You’ll see a list of eligible upsell prices in the dropdown menu. After you select an upsell, it immediately applies to eligible payment links that use that price.

To set up a subscription upsell:

  1. Choose a subscription under Subscriptions, navigate down to Pricing.
  2. Use the overflow menu to select View price details.
  3. Navigate down to Upsells, and in the Upsells to dropdown menu, select or add a price.

Offer optional items

You can offer up to 10 optional items on your payment link. Optional items allow your customers to purchase additional products before checking out. You can offer multiple products, and specify initial or adjustable quantity.

Customers can add optional items to their order during checkout.

Dashboard

When you create a payment link in the Stripe Dashboard, you can click + Add recommended products to add up to 10 optional products to the payment link.

API

You can also create or update payment links with optional items through the API.

server.js
Node
await stripe.paymentLinks.create({ // ... line_items: [ { price: '{{PRICE_ID}}', quantity: 1, }, ], optional_items: [ { price: '{{OTHER_PRICE_ID}}', quantity: 1, }, { price: '{{ANOTHER_PRICE_ID}}', quantity: 1, adjustable_quantity: { enabled: true, minimum: 0, maximum: 10, }, }, ], });

Add a product-associated optional item

Use cross-sells to specify complementary products that you always want recommended as optional items at checkout. When you configure a cross-sell associated with a product, the optional item appears across all eligible payment links with that product. Cross-sells won’t appear if you specify additional optional items on a payment link.

To configure a cross-sell:

  1. On the Product catalog page, select your product.
  2. On the product details page, under Cross-sells, find the product you want to cross-sell.

After you configure a cross-sell, the payment links that contain your designated product automatically add the cross-sell as an optional item.

Esta página foi útil?
SimNão
Precisa de ajuda? Fale com o suporte.
Participe do nosso programa de acesso antecipado.
Confira nosso changelog.
Dúvidas? Fale com a equipe de vendas.
LLM? Read llms.txt.
Powered by Markdoc
Guias relacionados
Subscription upsells
Produtos usados
Payments
Payment Links