STRIPE.CUSTOMER.CREATE
Premium
Creates a new customer.
Syntax
=STRIPE.CUSTOMER.CREATE([Name], [EMail], [Options], [ResponseTarget])
Arguments
Name | Type | Description |
---|---|---|
Name (optional) | String | Optional name of the customer to add. |
EMail (optional) | String | Optional email address of the customer to add. |
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
A | B | |
---|---|---|
1 | description | "Test customer" |
Formula | Result | Comment |
---|---|---|
| JSON | Creates a new customer. |
| JSON | Same as before but with an additional email and description specified by given JSON object. |