hi everybody, quick question...
What is the best way to push data out of netsuite to a third party REST service? (for example....Everytime an invoice is created, i want to connect to a REST service using user and pass auth, and post some information)
i was thinking using https.post module ....however not sure how to authenticate
b
battk
04/23/2020, 9:16 PM
an integration platform is always a nice choice if you want a consistent interface
battk
04/23/2020, 9:17 PM
otherwise the authentication has more to do with the service, rarely do you have a choice
battk
04/23/2020, 9:17 PM
if you are writing this yourself, the primary choices are a user event script or a map/reduce/scheduled script
battk
04/23/2020, 9:18 PM
user event scripts affects performance greatly, so determine if they are appropiate
r
reza.seedin
04/23/2020, 11:51 PM
If its not time critical (real time) use a SS/MR else UE. OR pist info from to a log record and then process it so you can retry if it fails
c
Craig
04/24/2020, 12:40 AM
I usually look to do this via Celigo
👍 1
Craig
04/24/2020, 12:41 AM
You can do this purely in SS but you don't get the benefit of middleware to 'guarantee' delivery, provide queueing etc.