STRIPE.PRODUCT.GETALL
Premium
Retrieves a sorted list of registered products, with most recent product first.
Syntax
=STRIPE.PRODUCT.GETALL([Active], [Limit], [Options], [ResponseTarget])
Arguments
| Name | Type | Description | 
|---|---|---|
| Active (optional) | Boolean | Filter products by their active state. | 
| Limit (optional) | Number | Limit the number of returned customers. 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 inactive products. Returned list is limited to 3. |