
Send Invoices using Stripe
Made by Stripe
Creates and sends brandable customer invoices using the Stripe payments platform.
How this extension works
Use this extension to create and send brandable customer invoices using the payments platform Stripe .
The invoices are automatically customized with the logo and color theme of your business that you've set up in Stripe. After the invoice is sent, you can use the Stripe dashboard to track whether the customer has paid and how much money you processed with detailed reporting and charts.
This extension listens to your specified Cloud Firestore collection for new documents (like the example below). When you add a document, Stripe uses the invoice information in the document to create an invoice in their system then sends the invoice to the email address specified in the document. You can optionally manage your customer email addresses using Firebase Authentication user IDs.
email: "customer@example.com",
items: [{
amount: 2000,
currency: "usd",
quantity: 2, // Optional, defaults to 1.
description: "Growth plan"
}]
Here's an example of what your customized invoice will look like!
An optional feature of this extension is to automatically update the invoice's status in its Cloud Firestore document. You can configure this feature after installing the extension by registering a Stripe webhook that listens for
Stripe invoice events
. If you want to use this optional feature, leave the parameter
Stripe webhook secret
empty during installation, then reconfigure your installed extension later with the actual value for your registered webhook. More details about this process are provided after installation.
Additional setup
Before installing this extension, set up the following Firebase services in your Firebase project:
-
Cloud Firestore
to store invoice information and optionally invoice status.
- Follow the steps in the documentation to create a Cloud Firestore database.
-
Firebase Authentication
to optionally manage email and customer data.
- Enable the sign-in methods in the Firebase console that you want to offer your users.
You must also have a Stripe account and a Stripe API key before installing this extension.
Note:
Stripe has a test mode that lets you make API calls without making actual payments. To use this extension with Stripe's test mode, set the extension's
Stripe API key
parameter (during extension configuration) to use a test mode key. A test mode key looks like
rk_test_12345
, whereas a live mode key would be
rk_live_12345
. As this extension only requires write access to your Stripe
customers
and
invoices
resources, we recommend that you create a
restricted key
with limited access to only these resources rather than using your secret key.
Billing
This extension uses the following Firebase services which may have associated charges:
- Cloud Firestore
- Cloud Functions
- Firebase Authentication (optional)
This extension also uses the following third-party services:
- Stripe Billing ( pricing information )
You are responsible for any costs associated with your use of these services.
Note from Firebase
To install this extension, your Firebase project must be on the Blaze (pay-as-you-go) plan. You will only be charged for the resources you use. Most Firebase services offer a free tier for low-volume use. Learn more about Firebase billing.
Starting August 17 2020, you will be billed a small amount (typically less than $0.10) when you install or reconfigure this extension. See the Cloud Functions for Firebase billing FAQ for a detailed explanation.
How to install this extension
Using the Firebase console
To install and manage extensions, you can use the Firebase console.
Install using consoleUsing the Firebase CLI
To install and manage extensions, you can also use the Firebase CLI:
Step 1: Run the following npm command to install the CLI or update to the latest CLI version.
npm install -g firebase-toolsDoesn't work? Take a look at the Firebase CLI reference or change your npm permissions .
Step 2: Set up a new Firebase project directory or navigate to an existing one
Step 3: Add this extension to your extension manifest by running
firebase ext:install stripe/firestore-stripe-invoices --local --project=projectId_or_alias
Step 4 (Optional): Test this extension locally with the Firebase Emulator Suite
firebase emulators:start
Step 5: Deploy the extensions in your manifest to your project
firebase deploy --only extensions --project=projectId_or_alias