This action will create a new customer.
- API endpoint slug
- stripe.create_customer
- Filter code method
- Stripe.createCustomer.skip(string?: reason)
- Runtime method
- runAction("stripe.create_customer", {})
Action fields
- Label
- Name
- Helper text
- The full name of the new customer.
- Slug
- name
- Required
- true
- Can have default value
- true
- Filter code method
- Stripe.createCustomer.setName(string: name)
- Label
- Email
- Helper text
- The email of the new customer.
- Slug
- email
- Required
- false
- Can have default value
- true
- Filter code method
- Stripe.createCustomer.setEmail(string: email)
- Label
- Phone Number
- Helper text
- The phone of the new customer.
- Slug
- phone_number
- Required
- false
- Can have default value
- true
- Filter code method
- Stripe.createCustomer.setPhoneNumber(string: phoneNumber)
- Label
- Address Line 1
- Helper text
- The first line of the customer's address.
- Slug
- address_line_1
- Required
- false
- Can have default value
- true
- Filter code method
- Stripe.createCustomer.setAddressLine1(string: addressLine1)
- Label
- Address Line 2
- Helper text
- The second line of the customer's address.
- Slug
- address_line_2
- Required
- false
- Can have default value
- true
- Filter code method
- Stripe.createCustomer.setAddressLine2(string: addressLine2)
- Label
- City
- Helper text
- The city of the customer's address.
- Slug
- city
- Required
- false
- Can have default value
- true
- Filter code method
- Stripe.createCustomer.setCity(string: city)
- Label
- State
- Helper text
- The state of the customer's address.
- Slug
- state
- Required
- false
- Can have default value
- true
- Filter code method
- Stripe.createCustomer.setState(string: state)
- Label
- Country
- Helper text
- The country of the customer's address.
- Slug
- country
- Required
- false
- Can have default value
- true
- Filter code method
- Stripe.createCustomer.setCountry(string: country)
- Label
- Zip
- Helper text
- The zip code of the customer's address.
- Slug
- zip
- Required
- false
- Can have default value
- true
- Filter code method
- Stripe.createCustomer.setZip(string: zip)