Is it possible to record if a RESTlet is called?
CONTEXT
I am attempting to mark a field on a purchase order if it was successfully called into another system.
s
scottvonduhn
03/09/2023, 9:32 PM
Simplest thing would be to write a log right at the start of the restlet’s entry point function(s):
If the call was successfully made, you’ll see the log entry in the restlet script. Of coruse, that won’t help much if the call was made incorrectly, or using the wrong credentials, but then some kind of error would be going back to the calling client
k
Kenneth Jules
03/10/2023, 3:40 PM
Thank you for your advice, Scott.
I'll experiment this solution.