NetSuite API SOAP/Rest

Hi @wisemanleo , yes this guy has a very good instructions. He also has instructions for saved search:
https://timdietrich.me/blog/netsuite-saved-search-api/

Based on what he’s doing, you can use the POST Request node.

In the body, you can pass your search id:

{
  "searchID": "your_search_id"
}

And as he has it, you need to pass these in your headers:
Content-Type: application/json
Authorization: OAuth oauth_consumer_key="", oauth_nonce="", oauth_signature="", oauth_signature_method=“HMAC-SHA256”, oauth_timestamp="", oauth_token="", oauth_version=“1.0”, realm=TSTDRV2355109’

1 Like