Modules

filter

 

Objects/Functions

module (N/https)

SuiteScript 2.0

https.SecureString

// Please search https://system.netsuite.com/app/help/helpcenter.nl?search=https.SecureString for more information.

N/https Module
https.SecureString
Object Description: Encapsulates data that may be sent to a third-party via an HTTPS call, such as a fragment of sensitive data. An https.SecureString is returned by https.createSecureString(options). For a complete list of this object’s methods, see SecureString Object Members.
Supported Script Types: Server scripts For more information, see SuiteScript 2.0 Script Types.
Module: N/https Module
Since: 2015.2
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=https.SecureString

Example:

// Code Example 1
// Add additional code
//...
function createSecureString() {
var passwordGuid = '{284CFB2D225B1D76FB94D150207E49DF}';
var secureToken = https.createSecureString({ // secureToken is an https.SecureString
input: passwordGuid
});
}
return secureToken;
//...
// Add additional code

//SOURCE: https://system.netsuite.com/app/help/helpcenter.nl?fid=section_4418286676.html