gpt4 book ai didi

email - Stripe,是否可以通过电子邮件搜索客户?

转载 作者:行者123 更新时间:2023-12-03 06:17:30 25 4
gpt4 key购买 nike

更新:自 2018 年 1 月左右开始,现在可以在 Stripe 上使用 email 参数进行搜索。请参阅accepted answer .

<小时/>

我想知道使用 Stripe API 时是否可以仅通过电子邮件地址搜索客户。

documentation仅表示搜索方式:

created,
ending_before,
limit,
starting_after

但不是电子邮件

我希望不必列出所有客户来查找哪些客户具有相同的电子邮件地址。

最佳答案

Stripe 现在允许您通过电子邮件过滤客户。

https://stripe.com/docs/api#list_customers

Map<String, Object> options = new HashMap<>();
options.put("email", email);
List<Customer> customers = Customer.list(options).getData();

if (customers.size() > 0) {
Customer customer = customers.get(0);
...

这对于确保您不会创建重复的客户非常重要。因为您无法将在 Stripe 中创建客户以及在系统中存储 Stripe 客户 ID 放入单个事务中,所以您需要构建一些故障安全机制,在创建新客户之前检查特定客户是否存在。在这方面,通过电子邮件搜索客户非常重要。

关于email - Stripe,是否可以通过电子邮件搜索客户?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26767150/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com