#alexesch_api
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1222804513224921188
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
hello, in documentation there are such event (screenshot 1)
but in webhook settings, this event is missing (screenshot 2)
hi there!
which webhook event do you want to listen to exactly?
if it's not in the list, it means it doesn't exist.
is in the 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.
oh, so you see it here https://docs.stripe.com/api/events/types but not when you try to create the webhook envent in the dashboard?
having a look
it works for me:
can you try searching for "source" instead of "customer"?
weird
i can't see this event
previous screenshot was retrieved from EDIT existing webhook, but, if i'll create a new one, same issue
can you share your account ID (acct_xxx)? it's at the top of this page: https://dashboard.stripe.com/settings/account
acct_14bHNiJaf89hC41I
thanks, having a look
can you try creating/updating the webhook endpoint with the API directly? https://docs.stripe.com/api/webhook_endpoints/create
well, i can try
but why do i have to use api instead of UI?
not sure, we are not very familiar with the Stripe dashboard here on Discord. maybe it's a bug.
or it's because you are using a very old API version for 2014.
is possible to update stripe api version in dashboard?
sure: https://dashboard.stripe.com/test/developers
but note that:
- I'm not sure if it will fix your issue
- upgrading your default API version is great to get access to new features, but it also means it can break your integration. so do this with caution, and only after having read the changelog: https://stripe.com/docs/upgrades
soma, we can update the api version by using sdk
but, why this event is not visible in the dashboard
Hmm could you elaborate again which event is missing
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
wait a second
as far i know, the api version is related to outcoming requests from my end
is not related to the dashboard
oh, i see
and this, can broke our whole project
Yes don't do it yet
You should test it carefully with individual requests, but that's a different story
for the event not available, I think it relates to the API version
so, when i'll update the api version from the dashboard, i'll be able to use new events, right?
for now, to replace this functionality, i can use
card.created
and check for the source of this user,
i know, but in our case
new source = new card
new card = card.created
i'll check if it will work
thank you!