Created
April 11, 2022 19:24
-
-
Save chrisjangl/202ab901d12bb9c27d0c6aa00ae5c6f9 to your computer and use it in GitHub Desktop.
First attempts to create a Stripe invoice using the Stripe CLI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INVOICE_ID="" | |
CUSTOMER_ID="" | |
FOOTER="" | |
DESCRIPTION="" | |
stripe invoices create --customer=${CUSTOMER_ID} --days-until-due=1 --footer=\"${FOOTER}\" --collection-method=\"send_invoice\" -d \"metadata[invoice]\"=${ID} --description="${DESCRIPTION}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment