So we have build a simple transaction for user for payment for one time charge with stripe.
Webhook is working well. And the transaction is also perfectly fine. But when I am trying to update the status of transaction, by matching the transaction ids, I don’t know its not able to change the status in backend. I tested that the issue is exactly of string not getting matched because , i created a new datatype for transaction and created it instead of matching and updating and that one is working, but I need to update the transaction. Please let me know am I missing something here?
You have make changes to a data entry first and then you’re actually created an entry last. Shouldn’t that be the other way around?
The other one is just to test if data is coming as required. The first one is the main one, which is intended to change the transaction create when user triggers the payment button itself
Can you take a picture of the captured data? Click “Modify data” or whatever it is when you are on the API workflow. Maybe the Request data’s object id isn’t the charge id (ch_) you need.
that is exactly the above photo of rows represent, the one with amount and status have transaction id coming from object id and the another one is charge id, both types are also text
You are storing the charge Id
Thankyou found a solution to this,I created two transaction tables, one with original and another one with I am getting data, than I scheduled a workflow for trigger to match the entries and update the status after 10 seconds, and its working now. Thankyou so much
This topic was automatically closed after 70 days. New replies are no longer allowed.