#xiaose_46389
1 messages · Page 1 of 1 (latest)
Can you share the example Webhook events ID (evt_xxx) (1) with customer value and (2) with null customer value?
sory, what's the evt_xxx ? maybe id like (cs_live_xxxxx) or payment_intent like (py_xxxxx)
Event (evt_xxx) is the Webhook event that you listen for the changes including payment on your account
If it's not webhook event, can you share the object ID that you faced the differences?
dear, i got it , (evt_1NqTMeLz16pXrwgIWYzYnhfP) customer is null but (evt_1NqEIXLz16pXrwgIR75FNoey) custemer is ok
Hi! I'm taking over this thread.
Havine a look...
Found the issue!
This is how you created the first Checkout Session https://dashboard.stripe.com/logs/req_8vKM2tbpfAamB2 which is using API version
2023-08-16
This is how you created the first Checkout Session https://dashboard.stripe.com/logs/req_rKrQ7ymEwVFmq7 with is using API version
2020-03-02
If the first case, we set customer_creation: "if_required" by default, which means in this case no customer is created.
In the second case it's customer_creation: "always".
This is mentioned here: https://stripe.com/docs/upgrades#2022-08-01
thanks sir