STRIPE.PRODUCT.CREATE
Premium
Creates a new product.
Syntax
=STRIPE.PRODUCT.CREATE(Name, [Description], [Active], [Options], [ResponseTarget])
Arguments
| Name | Type | Description | 
|---|---|---|
| Name | String | Name of the product to create. | 
| Description (optional) | String | Optional product description. | 
| Active (optional) | Boolean | Is the product currently available for purchase. Defaults to true. | 
| 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 | Creates a new product. |