ServiceNow Decrypt a passwordv2 field
For a field named 'password', either of below should work:
gr_atr.password.getDecryptedValue());
// or,
var Encrypter = new GlideEncrypter();
password=(Encrypter.decrypt(gr_atr.password).toString());
All things ServiceNow... take a look at my channel: https://www.youtube.com/@cloudminus89
For a field named 'password', either of below should work:
Comments
Post a Comment