InvoiceService
Class: No description found
Method: Capture the payment of an existing, uncaptured, charge. This is the second half of the two-step payment flow, where first you created a charge with the capture option set to false.
ChargeService::capture Read More »
Method: You can list all invoices, or list the invoices for a specific customer. The invoices are returned sorted by creation date, with the most recently created invoices appearing first.
InvoiceService::all Read More »
Method: To charge a credit card or other payment source, you create a Charge object. If your API key is in test mode, the supplied payment source (e.g., card) won’t actually be charged, although everything else will occur as if in live mode. (Stripe assumes that the charge would have completed successfully).
ChargeService::create Read More »
Method: When retrieving an invoice, you’ll get a lines property containing the total count of line items and the first handful of those items.
InvoiceService::allLines Read More »
Method: Retrieves the details of a charge that has previously been created. Supply the unique charge ID that was returned from your previous request, and Stripe will return the corresponding charge information. The same information is returned when creating or refunding the charge.
ChargeService::retrieve Read More »
Method: This endpoint creates a draft invoice for a given customer. The draft invoice created pulls in all pending invoice items on that customer, including prorations. The invoice remains a draft until you finalize the invoice, which allows you to pay or send the invoice to your customers.
InvoiceService::create Read More »
Method: Permanently deletes a one-off invoice draft. This cannot be undone. Attempts to delete invoices that are no longer in a draft state will fail; once an invoice has been finalized or if an invoice is for a subscription, it must be voided.
InvoiceService::delete Read More »
Method: Most credit balance transaction fields are immutable, but you may update its description and metadata.
CustomerService::updateBalanceTransaction Read More »
Method: No description found
CustomerService::updateSource Read More »
Method: No description found
CustomerService::verifySource Read More »
Method: Invalidates a short-lived API key for a given resource.
EphemeralKeyService::delete Read More »
Method: When you create a new credit card, you must specify a customer or recipient on which to create it.
CustomerService::createSource Read More »
Method: Creates a short-lived API key for a given resource.
EphemeralKeyService::create Read More »
Method: Creates a new TaxID object for a customer.
CustomerService::createTaxId Read More »
Method: Permanently deletes a customer. It cannot be undone. Also immediately cancels any active subscriptions on the customer.
CustomerService::delete Read More »
Method: Returns a list of your tax rates. Tax rates are returned sorted by creation date, with the most recently created tax rates appearing first.
TaxRateService::all Read More »
Method: Removes the currently applied discount on a customer.
CustomerService::deleteDiscount Read More »