Loading
Salesforce now sends email only from verified domains. Read More
Vlocity Contract Lifecycle Management
Table of Contents
Select Filters

          No results
          No results
          Here are some search tips

          Check the spelling of your keywords.
          Use more general search terms.
          Select fewer filters to broaden your search.

          Search all of Salesforce Help
          getNotificationSettings Method

          getNotificationSettings Method

          This method returns reminder and expiration notification settings for a specific standard (Order, Opportunity, and Quote) or custom object configured to use the generic DocuSign feature.

          Parameters

          Parameter

          Description

          objectId

          The ID of the parent object. The parent object could be Order, Opportunity, Quote, or other objects configured for generic DocuSign use.

          Request Body

          Using default or custom class implementation (if custom class is defined and no documentSelector is submitted)

          // initialize the parameters
          String methodName = 'getNotificationSettings';
          Map<String, Object> inputMap = new Map<String, Object>();
          Map<String, Object> outputMap = new Map<String, Object>();
          Map<String, Object> optionsMap = new Map<String, Object>();
          
          // initialize required parameter, 
          // can be Id of any object configured for generic docusign
          Id quoteId = '[existing quoteId]';
          
          // setup input parameters for the method to be invoked
          inputMap.put('objectId', quoteId);
          
          // no options
          
          // instantiate the generic api
          VlocityOpenInterface2 voi = new GenericDocuSignIntegrationService();
          
          // invoke the method
          voi.invokeMethod(methodName, inputMap, outputMap, optionsMap);
          
          // log result
          System.debug('outputMap: ' + JSON.serialize(outputMap));

          Response Body

          If the method is successfully executed, the response body contains notificationSettings, a map containing reminder and expiration settings.

           
          Loading
          Salesforce Help | Article