STRIPE.CUSTOMER.GETALL
Premium
Retrieves a sorted list of known customers, with most recent customer first.
Syntax
=STRIPE.CUSTOMER.GETALL([EMail], [Limit], [Options], [ResponseTarget])
Arguments
Name | Type | Description |
---|---|---|
EMail (optional) | String | Filter customers by specified email. |
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 customers. Returned list is limited to 3. |