The Stripe Connector lets you do almost anything on Stripe. You need to provide your API key to the connector. All the options is documented on the Stripe API docs.

Create Customer

Creates a new customer with the provided options.

CreateCustomer(CustomerCreateOptions options);

Parameters:

Returns: The created Customer object.

Update Customer

Updates an existing customer with the provided options.

UpdateCustomer(string customer_id, CustomerUpdateOptions options);

Parameters:

Returns: The updated Customer object.

Delete Customer

Deletes an existing customer.

DeleteCustomer(string customer_id);

Parameters: