Function Declaration
function getConfigurationFieldValue(options)
Type
Object function
Description
Retrieve a named standard configuration value.
For all Financial Institution Parser Plug-ins that you develop, the configuration_id value is available. This is a unique identifier at the format profile level. It can be used to refer to a format profile, even if the record is not created.
Returns
String
Input Parameters
options – a JavaScript object with the property FieldName, which is a string. This property is required and refers to the name of the configuration property to retrieve.
Example
var configurationId = context.pluginConfiguration.getConfigurationFieldValue({
fieldName: 'configuration_id'
});
reference: getConfigurationFieldValue()