NElliott
12/19/2023, 2:57 PMalien4u
12/19/2023, 3:31 PMconst oConnect = sftp.createConnection({
username: pData.USERNAME,
secret: pData.SFTP_SECRET,
url: pData.HOST,
directory: '/',
hostKey: pData.HOST_KEY,
hostKeyType: 'rsa'
});
alien4u
12/19/2023, 3:33 PMalien4u
12/19/2023, 3:34 PMsecret: pData.SFTP_SECRET
This variable holds the ID of a NetSuite Secret created via API Secrets.NElliott
12/19/2023, 4:00 PMsecret: custsecret_
or (old skool) use the GUID and
passwordGuid: "that long guid"
Thank you for clarifying