Dmitry Masanov
01/26/2022, 12:40 PMconst emp = record.load({type: record.Type.EMPLOYEE, id: 6104})
const ssn = emp.getValue({fieldId: 'socialsecuritynumber'})
I get it as a normal string, but
const ss = search.lookupFields({type: search.Type.EMPLOYEE, columns: 'socialsecuritynumber', id: 6104})
returns it in an encrypted way, so just ***********
Is there a way I can decode this value received from a saved search?