Certificate.threeMonthsReminder

Note:

The content in this help topic pertains to SuiteScript 2.0 and SuiteScript 2.1.

Property Description

Indicates the setting of the 3 Months box for Expiration Reminders on the certificate record. This property is set to true if the 3 Months box is checked. When set to true , email reminders are sent to account administrators three months before the certificate expires.

If the Copy Employees box is also checked, selected employees are copied on the reminder emails.

Type

boolean

Module

N/certificateControl Module

Parent Object

certificateControl.Certificate

Sibling Object Members

Certificate Object Members

Since

2019.2

Syntax

Important:

The following code sample shows the syntax for this member. It is not a functional example. For a complete script example, see N/certificateControl Module Script Samples.

            // Add additional code
...
//load the certificate record object
var loadedCertificate = cc.loadCertificate({
    scriptId : 'custcertificate_testid'
    });
//update the Expiration Reminder for 3 Months to checked 
loadedCertificate.threeMonthsReminder = true;
//save the certificate record object
loadedCertificate.save();
...
// Add additional code 

          

Related Topics

Digital Signing
Uploading Digital Certificates
N/https/clientCertificate Module
N/crypto/certificate Module

General Notices