#vell2x
1 messages · Page 1 of 1 (latest)
I think you are looing to this guide:
https://stripe.com/docs/payments/checkout/fulfill-orders#delayed-notification
checkout.session.async_payment_succeeded is sent when using delayed payment methods
ok and one more question. Is it possible to attach a job id to a payment transaction so i can find the exact job that was paid for? I am using a non-native app with a node js backend so I am unable to recieve the response directly
Hi! I'm taking over this thread.
What do you mena exactly by "job id"? But you can add any data you want to Stripe object by using the metadata field https://stripe.com/docs/api/metadata
Job id is just a unique value assigned to each job
Then yes, store it in the metadata.
thank you