Add New Records

Add a new record to Stipe.

To add a new record to Stripe, you need to specify the type of object you're creating and provide the necessary field values.

Examples

  1. This creates a new customer with the specified email and name.

create a customer in stripe with
  the email is "[email protected]"
  the name is "John Doe"
  1. This creates a new price with the specified unit amount, currency, and product ID.

create a price in stripe with
  the unit_amount is 1000
  the currency is "usd"
  the product is "12232232"

Last updated

Was this helpful?