Have middleware call a Suitelet?
We have a connection between NetSuite, Boomi, and Salesforce. Our goal is to have Salesforce send data via boomi to a generic integration suitelet that can take the request and update the record specified in the request JSON. Is this possible to do via a Suitelet and in the same vein, how would one test such a connection via Bruno or Postman?
A better solution would be a RESTlet (assuming you can’t just use REST Web Services).
Once you have the URL and a token, you can set up authentication using the standard options in Postman.
A NetSuite Suitelet must be configured carefully to integrate middleware. To accept external requests, make sure the Suitelet’s “Available Without Login” setting is set to “Yes”. To achieve secure communication, the requestSuitelet method of the N/https module should be used, along with proper authentication and headers.



