Need Help with Stripe Webhooks

Hello Everyone,

I need help setting up my Stripe Webhooks. I've already did the checkout and it's working fine.

However, once the checkout is completed i need some details to be stored in user's database.

I need the following fields:

  1. StripeCustomerID
  2. StripeSubscriptionID
  3. SubscriptionStatus
  4. SubscriptionStart
  5. SubscriptionEnd

Here's what i've done already:



(I used {{$_POST.data.object.metadata.user_id}}, in my stripe webhook events the code show the right id for the user (23), so i tought it would work)

I was told that the fail of database update was because of SubscriptionStart and End due to Stripe date formation. I've removed for a while and it didn't work still.

If anyone could help i'd be very grateful.

Thanks,
Rodrigo

Is there any problem with my post? It's the second post in a row that i've got no answers...

So what do you see if you disable the update step and output the values you are using inside it in set value steps?

Actually the checkout webhook was fine, the problem was in my index webhook. Already solved, thanks anyway.