Stripe, is it possible to search a customer by their email?

前端 未结 12 1443
暗喜
暗喜 2020-12-08 06:32

Update: Since around January 2018, it is now possible to search using the email parameter on Stripe. See the accepted answer.


I

12条回答
  •  一个人的身影
    2020-12-08 06:48

    I did this by using the following API request. This was not available in stripe docs.I got this by tracking down their search in the dashboard area using Browser Developer Tools.

        url :https://api.stripe.com/v1/search?query="+email+"&prefix=false",
        method: GET
        headers: {
          "authorization": "Bearer Your_seceret Key",
          "content-type": "application/x-www-form-urlencoded",
        }
    

    Warning This uses an undocumented API that is specific to the dashboard. While it might work today, there is no guarantee it will continue to work in the future.

提交回复
热议问题