A Zapier zap that creates a QuickBooks Online sales receipt whenever a new Stripe charge succeeds, keeping your bookkeeping in sync. Eliminates manual reconciliation.
{
"version": "1.0",
"platform": "zapier",
"title": "Stripe Charge to QuickBooks Invoice",
"steps": [
{
"id": 1,
"type": "trigger",
"app": "Stripe",
"event": "New Charge",
"config": {
"status": "succeeded"
}
},
{
"id": 2,
"type": "action",
"app": "QuickBooks Online",
"event": "Create Sales Receipt",
"config": {
"customer": "{{1.billing_details__name}}",
"amount": "{{1.amount}}",
"currency": "{{1.currency}}",
"description": "Stripe charge {{1.id}}"
}
}
]
}