Transaction ID in REST API
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2020 06:30 AM
Hi ,
I need to validate the duplicate request in my REST API call . For that I need to read and use the transaction ID which will be sent by the 3rd party user while he/she trigger the REST API.
So could you help to read and access the transaction id ?
Regards,
Sagaya Rajan.
- Labels:
-
Integrations

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2020 08:07 AM
Have you tried adding a column for transaction id to the table that's being updated by the request and doing a query before insert/update to check for duplicate transaction id?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2020 08:00 PM
Hi Hozawa ,
It has resolved . Thank you.
var reqheader = request.headers;
var transaction_id= reqheader.transaction_id;
Regards,
Sagaya
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2022 04:16 AM