โ07-06-2021 12:22 PM
When the same original transaction token is used for multiple settle/clear requests, all responses have the same user_transaction_time. However, created_time is different. Which one do you recommend for saving in our system to identify when a clear request was called?
โ07-06-2021 11:57 PM
Great Question. You can use created_time.
โ07-16-2021 01:52 AM
Hey @jc_paymentsdev ,
I guess you are talking about multiple webhook payloads in case of partial clearings, In such scenarios, you can use the latest webhook's created time.
If you mean only for one webhook call, then you can use `created_time` as suggested by @albertot .
โ11-16-2021 09:55 AM
Added clarification in docs, specifically in Transaction field descriptions on the Transactions Core API Reference page.
Thanks, all!
โ07-06-2021 11:57 PM
Great Question. You can use created_time.
โ07-22-2021 12:17 AM
Thanks @albertot!
โ07-16-2021 01:52 AM
Hey @jc_paymentsdev ,
I guess you are talking about multiple webhook payloads in case of partial clearings, In such scenarios, you can use the latest webhook's created time.
If you mean only for one webhook call, then you can use `created_time` as suggested by @albertot .
โ07-22-2021 12:16 AM
Hey @Arvind - thanks for the tip! Where did you find this answer in the docs?
โ08-10-2021 01:20 PM
Hi @Arvind and @jc_paymentsdev , we'll add the clarification in docs, thanks!
โ11-16-2021 09:55 AM
Added clarification in docs, specifically in Transaction field descriptions on the Transactions Core API Reference page.
Thanks, all!
2 weeks ago
Here is some code I've been working on for this:
fmt.Println("Hello World!")
2 weeks ago - last edited 2 weeks ago
Wow, cool