Skip to main content
Version: Streamsheets 3.0

STRIPE.CUSTOMER.CREATE

Premium

Creates a new customer.

Syntax

=STRIPE.CUSTOMER.CREATE([Name], [EMail], [Options], [ResponseTarget])

Arguments

NameTypeDescription
Name (optional)StringOptional name of the customer to add.
EMail (optional)StringOptional email address of the customer to add.
Options (optional)JSONJSON which defines additional options as key value pairs. See Stripe API for supported options and their values.
ResponseTarget (optional)TargetSpecify inbox, outbox, cell or cell-range to write any response to

Return

TypeDescription
Boolean,Result,ErrorRequest result if no target is specified otherwise TRUE. In case of an error the corresponding error-code is returned.

Examples

AB
1description"Test customer"
FormulaResultComment
=STRIPE.CUSTOMER.CREATE("John Doe")
JSONCreates a new customer.
=STRIPE.CHARGE.CREATE("John Doe","info@doe.me",JSON(A1:B1))
JSONSame as before but with an additional email and description specified by given JSON object.