Questions tagged [stripe-customers]
6 questions
70
votes
16 answers
Stripe, is it possible to search a customer by their email?
Update: Since around January 2018, it is now possible to search using the email parameter on Stripe. See the accepted answer.
I was wondering if it was possible to search a customer only by their email address when using the Stripe API.
The…

Cyril N.
- 38,875
- 36
- 142
- 243
4
votes
1 answer
Can we covert the guest customer in stripe to real customer?
I have strange situation ... I want to convert my guest customers in my stripe account to the real customers ... Real customers have the customerID but the guest customer doesn’t have the customer ID ... Is there any way to convert them.

Danish Sharma
- 77
- 1
- 4
0
votes
0 answers
How do I retrieve a customer's details from Stripe using an identifier, such as their email?
I'm using Stripe in a React demo site.
I'm looking to retrieve customer details and display them on-screen, ahead of adding basic authentication to an area - think "account area of e-commerce site", but very basic!
The problem I have is that while I…

Alex Libby
- 81
- 1
0
votes
0 answers
Stripe customer portal doesnt show prorations
I am creating a subscription system in Stripe, in the web app users can open the Stripe customer portal and see their subscription. I open the portal like this:
$router->post('create-customer-portal-session', function (Request $request) use…

Shile
- 1,063
- 3
- 13
- 30
0
votes
0 answers
Stripe customer details with subscription
As I am using the two different accounts for the stripe " live / test "
while using the
\Stripe\Customer::retrieve($customer_id);
I am getting different responses .
On test account I am getting only customer details and on live account I am getting…

Hassan Tariq
- 39
- 1
- 10
0
votes
2 answers
Retrieve Stripe customer by E-mail | Django
I'm trying a way to figure out how to retrieve the Stripe Customer by e-mail:
In my views, I wrote the below code:
if stripe.Customer.retrieve(email=request.POST['email']):
customer = stripe.Customer.retrieve(id)
else:
…

Felipe Dourado
- 441
- 2
- 12