Stripe é uma plataforma de pagamentos poderosa que permite gerenciar facilmente pagamentos, clientes, assinaturas, faturas, produtos e muito mais.
Com o Stripe integrado ao Zippy, seus agentes podem:
- Criar e gerenciar intenções de pagamento: Processe pagamentos com opções de configuração flexíveis.
- Trabalhar com clientes: Crie, recupere e atualize registros de clientes para seu negócio.
- Gerenciar assinaturas: Gerencie cobrança recorrente e ciclos de vida de assinaturas.
- Criar e enviar faturas: Gere faturas para pagamentos únicos ou recorrentes.
- Rastrear e gerenciar cobranças: Recupere e atualize objetos de cobrança para monitorar pagamentos.
- Configurar produtos e preços: Configure seu catálogo de produtos, modelos de preços e ofertas.
- Ouvir e reagir a eventos do Stripe: Acione fluxos de trabalho em resposta a atualizações de pagamento, cobranças bem-sucedidas e outros eventos do Stripe.
Ao conectar o Zippy com o Stripe, você habilita automação perfeita e operações financeiras dentro dos fluxos de trabalho dos seus agentes. Automatize integração de clientes, gerenciamento de assinaturas, coleta de pagamentos, geração de faturas e até ações personalizadas quando eventos de pagamento ocorrem—tudo gerenciado diretamente pelos seus agentes, com segurança via Stripe.
Seja construindo automação de e-commerce, serviços de assinatura ou executando relatórios e reconciliação, a ferramenta Stripe facilita coordenar pagamentos e dados financeiros dentro dos seus fluxos de trabalho inteligentes do Zippy.
Integra o Stripe ao fluxo de trabalho. Gerencie intenções de pagamento, clientes, assinaturas, faturas, cobranças, produtos, preços e eventos. Pode ser usado no modo de acionamento para acionar um fluxo de trabalho quando um evento do Stripe ocorre.
Create a new Payment Intent to process a payment
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
amount | number | Sim | Amount in cents (e.g., 2000 for $20.00) |
currency | string | Sim | Three-letter ISO currency code (e.g., usd, eur) |
customer | string | Não | Customer ID to associate with this payment |
payment_method | string | Não | Payment method ID |
description | string | Não | Description of the payment |
receipt_email | string | Não | Email address to send receipt to |
metadata | json | Não | Set of key-value pairs for storing additional information |
automatic_payment_methods | json | Não | Enable automatic payment methods (e.g., {"enabled": true}) |
| Parâmetro | Tipo | Descrição |
|---|
payment_intent | json | The created Payment Intent object |
metadata | json | Payment Intent metadata including ID, status, amount, and currency |
Retrieve an existing Payment Intent by ID
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Payment Intent ID (e.g., pi_1234567890) |
| Parâmetro | Tipo | Descrição |
|---|
payment_intent | json | The retrieved Payment Intent object |
metadata | json | Payment Intent metadata including ID, status, amount, and currency |
Update an existing Payment Intent
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Payment Intent ID (e.g., pi_1234567890) |
amount | number | Não | Updated amount in cents |
currency | string | Não | Three-letter ISO currency code |
customer | string | Não | Customer ID |
description | string | Não | Updated description |
metadata | json | Não | Updated metadata |
| Parâmetro | Tipo | Descrição |
|---|
payment_intent | json | The updated Payment Intent object |
metadata | json | Payment Intent metadata including ID, status, amount, and currency |
Confirm a Payment Intent to complete the payment
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Payment Intent ID (e.g., pi_1234567890) |
payment_method | string | Não | Payment method ID to confirm with |
| Parâmetro | Tipo | Descrição |
|---|
payment_intent | json | The confirmed Payment Intent object |
metadata | json | Payment Intent metadata including ID, status, amount, and currency |
Capture an authorized Payment Intent
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Payment Intent ID (e.g., pi_1234567890) |
amount_to_capture | number | Não | Amount to capture in cents (defaults to full amount) |
| Parâmetro | Tipo | Descrição |
|---|
payment_intent | json | The captured Payment Intent object |
metadata | json | Payment Intent metadata including ID, status, amount, and currency |
Cancel a Payment Intent
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Payment Intent ID (e.g., pi_1234567890) |
cancellation_reason | string | Não | Reason for cancellation (duplicate, fraudulent, requested_by_customer, abandoned) |
| Parâmetro | Tipo | Descrição |
|---|
payment_intent | json | The canceled Payment Intent object |
metadata | json | Payment Intent metadata including ID, status, amount, and currency |
List all Payment Intents
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
limit | number | Não | Number of results to return (default 10, max 100) |
customer | string | Não | Filter by customer ID |
created | json | Não | Filter by creation date (e.g., {"gt": 1633024800}) |
| Parâmetro | Tipo | Descrição |
|---|
payment_intents | json | Array of Payment Intent objects |
metadata | json | List metadata including count and has_more |
Search for Payment Intents using query syntax
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
query | string | Sim | Search query (e.g., "status:'succeeded' AND currency:'usd'") |
limit | number | Não | Number of results to return (default 10, max 100) |
| Parâmetro | Tipo | Descrição |
|---|
payment_intents | json | Array of matching Payment Intent objects |
metadata | json | Search metadata including count and has_more |
Create a new customer object
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
email | string | Não | Customer email address |
name | string | Não | Customer full name |
phone | string | Não | Customer phone number |
description | string | Não | Description of the customer |
address | json | Não | Customer address object |
metadata | json | Não | Set of key-value pairs |
payment_method | string | Não | Payment method ID to attach |
| Parâmetro | Tipo | Descrição |
|---|
customer | json | The created customer object |
metadata | json | Customer metadata |
Retrieve an existing customer by ID
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Customer ID (e.g., cus_1234567890) |
| Parâmetro | Tipo | Descrição |
|---|
customer | json | The retrieved customer object |
metadata | json | Customer metadata |
Update an existing customer
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Customer ID (e.g., cus_1234567890) |
email | string | Não | Updated email address |
name | string | Não | Updated name |
phone | string | Não | Updated phone number |
description | string | Não | Updated description |
address | json | Não | Updated address object |
metadata | json | Não | Updated metadata |
| Parâmetro | Tipo | Descrição |
|---|
customer | json | The updated customer object |
metadata | json | Customer metadata |
Permanently delete a customer
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Customer ID (e.g., cus_1234567890) |
| Parâmetro | Tipo | Descrição |
|---|
deleted | boolean | Whether the customer was deleted |
id | string | The ID of the deleted customer |
metadata | json | Deletion metadata |
List all customers
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
limit | number | Não | Number of results to return (default 10, max 100) |
email | string | Não | Filter by email address |
created | json | Não | Filter by creation date |
| Parâmetro | Tipo | Descrição |
|---|
customers | json | Array of customer objects |
metadata | json | List metadata |
Search for customers using query syntax
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
query | string | Sim | Search query (e.g., "email:'customer@example.com'") |
limit | number | Não | Number of results to return (default 10, max 100) |
| Parâmetro | Tipo | Descrição |
|---|
customers | json | Array of matching customer objects |
metadata | json | Search metadata |
Create a new subscription for a customer
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
customer | string | Sim | Customer ID to subscribe |
items | json | Sim | Array of items with price IDs (e.g., [{"price": "price_xxx", "quantity": 1}]) |
trial_period_days | number | Não | Number of trial days |
default_payment_method | string | Não | Payment method ID |
cancel_at_period_end | boolean | Não | Cancel subscription at period end |
metadata | json | Não | Set of key-value pairs for storing additional information |
| Parâmetro | Tipo | Descrição |
|---|
subscription | json | The created subscription object |
metadata | json | Subscription metadata including ID, status, and customer |
Retrieve an existing subscription by ID
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Subscription ID (e.g., sub_1234567890) |
| Parâmetro | Tipo | Descrição |
|---|
subscription | json | The retrieved subscription object |
metadata | json | Subscription metadata including ID, status, and customer |
Update an existing subscription
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Subscription ID (e.g., sub_1234567890) |
items | json | Não | Updated array of items with price IDs |
cancel_at_period_end | boolean | Não | Cancel subscription at period end |
metadata | json | Não | Updated metadata |
| Parâmetro | Tipo | Descrição |
|---|
subscription | json | The updated subscription object |
metadata | json | Subscription metadata including ID, status, and customer |
Cancel a subscription
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Subscription ID (e.g., sub_1234567890) |
prorate | boolean | Não | Whether to prorate the cancellation |
invoice_now | boolean | Não | Whether to invoice immediately |
| Parâmetro | Tipo | Descrição |
|---|
subscription | json | The canceled subscription object |
metadata | json | Subscription metadata including ID, status, and customer |
Resume a subscription that was scheduled for cancellation
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Subscription ID (e.g., sub_1234567890) |
| Parâmetro | Tipo | Descrição |
|---|
subscription | json | The resumed subscription object |
metadata | json | Subscription metadata including ID, status, and customer |
List all subscriptions
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
limit | number | Não | Number of results to return (default 10, max 100) |
customer | string | Não | Filter by customer ID |
status | string | Não | Filter by status (active, past_due, unpaid, canceled, incomplete, incomplete_expired, trialing, all) |
price | string | Não | Filter by price ID |
| Parâmetro | Tipo | Descrição |
|---|
subscriptions | json | Array of subscription objects |
metadata | json | List metadata |
Search for subscriptions using query syntax
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
query | string | Sim | Search query (e.g., "status:'active' AND customer:'cus_xxx'") |
limit | number | Não | Number of results to return (default 10, max 100) |
| Parâmetro | Tipo | Descrição |
|---|
subscriptions | json | Array of matching subscription objects |
metadata | json | Search metadata |
Create a new invoice
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
customer | string | Sim | Customer ID (e.g., cus_1234567890) |
description | string | Não | Description of the invoice |
metadata | json | Não | Set of key-value pairs |
auto_advance | boolean | Não | Auto-finalize the invoice |
collection_method | string | Não | Collection method: charge_automatically or send_invoice |
| Parâmetro | Tipo | Descrição |
|---|
invoice | json | The created invoice object |
metadata | json | Invoice metadata |
Retrieve an existing invoice by ID
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Invoice ID (e.g., in_1234567890) |
| Parâmetro | Tipo | Descrição |
|---|
invoice | json | The retrieved invoice object |
metadata | json | Invoice metadata |
Update an existing invoice
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Invoice ID (e.g., in_1234567890) |
description | string | Não | Description of the invoice |
metadata | json | Não | Set of key-value pairs |
auto_advance | boolean | Não | Auto-finalize the invoice |
| Parâmetro | Tipo | Descrição |
|---|
invoice | json | The updated invoice object |
metadata | json | Invoice metadata |
Permanently delete a draft invoice
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Invoice ID (e.g., in_1234567890) |
| Parâmetro | Tipo | Descrição |
|---|
deleted | boolean | Whether the invoice was deleted |
id | string | The ID of the deleted invoice |
metadata | json | Deletion metadata |
Finalize a draft invoice
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Invoice ID (e.g., in_1234567890) |
auto_advance | boolean | Não | Auto-advance the invoice |
| Parâmetro | Tipo | Descrição |
|---|
invoice | json | The finalized invoice object |
metadata | json | Invoice metadata |
Pay an invoice
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Invoice ID (e.g., in_1234567890) |
paid_out_of_band | boolean | Não | Mark invoice as paid out of band |
| Parâmetro | Tipo | Descrição |
|---|
invoice | json | The paid invoice object |
metadata | json | Invoice metadata |
Void an invoice
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Invoice ID (e.g., in_1234567890) |
| Parâmetro | Tipo | Descrição |
|---|
invoice | json | The voided invoice object |
metadata | json | Invoice metadata |
Send an invoice to the customer
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Invoice ID (e.g., in_1234567890) |
| Parâmetro | Tipo | Descrição |
|---|
invoice | json | The sent invoice object |
metadata | json | Invoice metadata |
List all invoices
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
limit | number | Não | Number of results to return (default 10, max 100) |
customer | string | Não | Filter by customer ID |
status | string | Não | Filter by invoice status |
| Parâmetro | Tipo | Descrição |
|---|
invoices | json | Array of invoice objects |
metadata | json | List metadata |
Search for invoices using query syntax
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
query | string | Sim | Search query (e.g., "customer:'cus_1234567890'") |
limit | number | Não | Number of results to return (default 10, max 100) |
| Parâmetro | Tipo | Descrição |
|---|
invoices | json | Array of matching invoice objects |
metadata | json | Search metadata |
Create a new charge to process a payment
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
amount | number | Sim | Amount in cents (e.g., 2000 for $20.00) |
currency | string | Sim | Three-letter ISO currency code (e.g., usd, eur) |
customer | string | Não | Customer ID to associate with this charge |
source | string | Não | Payment source ID (e.g., card token or saved card ID) |
description | string | Não | Description of the charge |
metadata | json | Não | Set of key-value pairs for storing additional information |
capture | boolean | Não | Whether to immediately capture the charge (defaults to true) |
| Parâmetro | Tipo | Descrição |
|---|
charge | json | The created Charge object |
metadata | json | Charge metadata including ID, status, amount, currency, and paid status |
Retrieve an existing charge by ID
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Charge ID (e.g., ch_1234567890) |
| Parâmetro | Tipo | Descrição |
|---|
charge | json | The retrieved Charge object |
metadata | json | Charge metadata including ID, status, amount, currency, and paid status |
Update an existing charge
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Charge ID (e.g., ch_1234567890) |
description | string | Não | Updated description |
metadata | json | Não | Updated metadata |
| Parâmetro | Tipo | Descrição |
|---|
charge | json | The updated Charge object |
metadata | json | Charge metadata including ID, status, amount, currency, and paid status |
Capture an uncaptured charge
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Charge ID (e.g., ch_1234567890) |
amount | number | Não | Amount to capture in cents (defaults to full amount) |
| Parâmetro | Tipo | Descrição |
|---|
charge | json | The captured Charge object |
metadata | json | Charge metadata including ID, status, amount, currency, and paid status |
List all charges
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
limit | number | Não | Number of results to return (default 10, max 100) |
customer | string | Não | Filter by customer ID |
created | json | Não | Filter by creation date (e.g., {"gt": 1633024800}) |
| Parâmetro | Tipo | Descrição |
|---|
charges | json | Array of Charge objects |
metadata | json | List metadata including count and has_more |
Search for charges using query syntax
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
query | string | Sim | Search query (e.g., "status:'succeeded' AND currency:'usd'") |
limit | number | Não | Number of results to return (default 10, max 100) |
| Parâmetro | Tipo | Descrição |
|---|
charges | json | Array of matching Charge objects |
metadata | json | Search metadata including count and has_more |
Create a new product object
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
name | string | Sim | Product name |
description | string | Não | Product description |
active | boolean | Não | Whether the product is active |
images | json | Não | Array of image URLs for the product |
metadata | json | Não | Set of key-value pairs |
| Parâmetro | Tipo | Descrição |
|---|
product | json | The created product object |
metadata | json | Product metadata |
Retrieve an existing product by ID
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Product ID (e.g., prod_1234567890) |
| Parâmetro | Tipo | Descrição |
|---|
product | json | The retrieved product object |
metadata | json | Product metadata |
Update an existing product
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Product ID (e.g., prod_1234567890) |
name | string | Não | Updated product name |
description | string | Não | Updated product description |
active | boolean | Não | Updated active status |
images | json | Não | Updated array of image URLs |
metadata | json | Não | Updated metadata |
| Parâmetro | Tipo | Descrição |
|---|
product | json | The updated product object |
metadata | json | Product metadata |
Permanently delete a product
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Product ID (e.g., prod_1234567890) |
| Parâmetro | Tipo | Descrição |
|---|
deleted | boolean | Whether the product was deleted |
id | string | The ID of the deleted product |
metadata | json | Deletion metadata |
List all products
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
limit | number | Não | Number of results to return (default 10, max 100) |
active | boolean | Não | Filter by active status |
| Parâmetro | Tipo | Descrição |
|---|
products | json | Array of product objects |
metadata | json | List metadata |
Search for products using query syntax
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
query | string | Sim | Search query (e.g., "name:'shirt'") |
limit | number | Não | Number of results to return (default 10, max 100) |
| Parâmetro | Tipo | Descrição |
|---|
products | json | Array of matching product objects |
metadata | json | Search metadata |
Create a new price for a product
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
product | string | Sim | Product ID (e.g., prod_1234567890) |
currency | string | Sim | Three-letter ISO currency code (e.g., usd, eur) |
unit_amount | number | Não | Amount in cents (e.g., 1000 for $10.00) |
recurring | json | Não | Recurring billing configuration (interval: day/week/month/year) |
metadata | json | Não | Set of key-value pairs |
billing_scheme | string | Não | Billing scheme (per_unit or tiered) |
| Parâmetro | Tipo | Descrição |
|---|
price | json | The created price object |
metadata | json | Price metadata |
Retrieve an existing price by ID
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Price ID (e.g., price_1234567890) |
| Parâmetro | Tipo | Descrição |
|---|
price | json | The retrieved price object |
metadata | json | Price metadata |
Update an existing price
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Price ID (e.g., price_1234567890) |
active | boolean | Não | Whether the price is active |
metadata | json | Não | Updated metadata |
| Parâmetro | Tipo | Descrição |
|---|
price | json | The updated price object |
metadata | json | Price metadata |
List all prices
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
limit | number | Não | Number of results to return (default 10, max 100) |
product | string | Não | Filter by product ID |
active | boolean | Não | Filter by active status |
| Parâmetro | Tipo | Descrição |
|---|
prices | json | Array of price objects |
metadata | json | List metadata |
Search for prices using query syntax
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
query | string | Sim | Search query (e.g., "active:'true' AND currency:'usd'") |
limit | number | Não | Number of results to return (default 10, max 100) |
| Parâmetro | Tipo | Descrição |
|---|
prices | json | Array of matching price objects |
metadata | json | Search metadata |
Retrieve an existing Event by ID
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
id | string | Sim | Event ID (e.g., evt_1234567890) |
| Parâmetro | Tipo | Descrição |
|---|
event | json | The retrieved Event object |
metadata | json | Event metadata including ID, type, and created timestamp |
List all Events
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Chave API Stripe (chave secreta) |
limit | number | Não | Number of results to return (default 10, max 100) |
type | string | Não | Filter by event type (e.g., payment_intent.created) |
created | json | Não | Filter by creation date (e.g., {"gt": 1633024800}) |
| Parâmetro | Tipo | Descrição |
|---|
events | json | Array of Event objects |
metadata | json | List metadata including count and has_more |
- Categoria:
tools
- Tipo:
stripe