Create invoice
documentedCreate a new invoice (draft).
POST /v1/invoicesBillingno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.stripe.com/v1/invoices" \
-X POST \
-u "{{STRIPE_API_KEY}}:" \
-H "Accept: application/json" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d 'customer={{$customer_id}}' \
-d 'description={{$description}}' \
-d 'auto_advance={{$auto_advance}}' \
-d 'currency={{$currency}}'