Forrest logo
back to the stripe tool

stripe:tldr:67f17

stripe: Create a customer.
$ stripe customers create --email="${test@example-com}" --name="${Jenny Rosen}"
try on your machine

This command is used to create a new customer in the Stripe payment system. Here's the breakdown of the command:

  • stripe customers create: This specifies the action to be performed, which is creating a new customer.

  • --email="${test@example-com}": This flag is used to specify the email address of the customer. In this case, it is set to ${test@example-com}. However, it seems like an error in the email format. It should be in the format of name@example.com.

  • --name="${Jenny Rosen}": This flag is used to specify the name of the customer. In this case, it is set to ${Jenny Rosen}. The name should be in quotes, but it seems like error in the formatting. It should be --name="Jenny Rosen".

So, to fix the command, it should look like this:

stripe customers create --email="test@example.com" --name="Jenny Rosen"

With this updated command, a new customer will be created in Stripe with the specified email and name.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the stripe tool