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.
Creates a new customer with the provided options.
CreateCustomer(CustomerCreateOptions options);
Parameters:
options
– CustomerCreateOptionsReturns: The created Customer
object.
Updates an existing customer with the provided options.
UpdateCustomer(string customer_id, CustomerUpdateOptions options);
Parameters:
customer_id
– The ID of the customer to update.options
– CustomerUpdateOptionsReturns: The updated Customer
object.
Deletes an existing customer.
DeleteCustomer(string customer_id);
Parameters:
customer_id
– The ID of the customer to delete.