STRIPE.CHARGE.GETALL
Premium
Retrieves a sorted list of previousely created charges, with most recent charge first.
Syntax
=STRIPE.CHARGE.GETALL([CustomerID], [Limit], [Options], [ResponseTarget])
Arguments
Name | Type | Description |
---|---|---|
CustomerID (optional) | String | Only return charges for customer specified by given ID. |
Limit (optional) | Number | Limit the number of returned charges. Limit can range between 1 and 100. Defaults to 10. |
Options (optional) | JSON | JSON which defines additional options as key value pairs. See Stripe API for supported options and their values. |
ResponseTarget (optional) | Target | Specify inbox, outbox, cell or cell-range to write any response to |
Return
Type | Description |
---|---|
Boolean,Result,Error | Request result if no target is specified otherwise TRUE. In case of an error the corresponding error-code is returned. |
Examples
Formula | Result | Comment |
---|---|---|
| JSON | Retrieves a list of all created charges. Returned list is limited to 3. |