Does anyone know if there are any docs for hitting...
# integrations
e
Does anyone know if there are any docs for hitting the NetSuite Connector (FarApp) endpoints directly? Using Chrome devtools I can see the API request and JSON response while logged into the portal, but I'd like to get the response payload programmatically. I have about 10000 items to sync and I am trying to identify ones that did not get picked-up.
f
As your integration demands scale, consider using something like Kafka. It's a very eloquent approach, especially as the number of systems grows.
e
As a workaround and for those familiar with Python webscraping, I used the seleniumwire module to get to the right URL and cycle through the paged results. Note that this module allows you to capture the response object - the standard selenium module does not.
🙌 1