#thriveguy - Guidance
1 messages ยท Page 1 of 1 (latest)
Thank you!
We're trying to avoid the entrance of payment info but would still like BASIC customer info to be sent to Stripe
Is that possible?
So you don't want to store payment info (CC, bank details, etc.) but still want to create Customer records in Stripe?
How are you integrating?
Ideally.
We're planning to use WooCommerce but currently just have a very basic system setup with Gravity forms
We're concerned that we'll lose potential customers if we require payment info to be entered but we still want their basic info sent to Stripe
Unfortunately I'm not familiar with either of those platforms. If you want to store Customer data you can create a Customer record by making a call to our Customer API.
https://stripe.com/docs/api/customers/create
OK. So this code could potentially be integrated into our form so that the customer info would be sent over to Stripe upon submission?
From your server, since it needs the Stripe secret API key but yeah. Then you could look up customers on the email they entered.
https://stripe.com/docs/api/customers/list
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Well we have that key already setup for our paid Stripe functionality
Gravity Forms has an - integration - section that allows for this info to be be entered
Sure, I just mean that you'll want to make the API call from the server. Some people get confused between client requests with Stripe.js and server-side requests
I see. That makes sense. I mostly just need assurance that we CAN send basic info to Stripe without payment info being submitted.
I have a meeting with our CMO in 18 minutes ๐
Well I can confirm you can create a Customer and store basic data without a payment method.