...
IsTestMode: Itdefines whether the user Importer is in a test mode or not.
CsvDelimiter: This is used to override attribute is optional and if not set the default CSV delimiter (',') with another charis used. (i.e. g. '|' for CCL)
ImportFilePath: This path links to the file path that the customer will drop the new user files to be uploaded and processed.
ImportFileBackupPath: Location where CSVs will be moved after processing is completed.
SchedulePeriod: Schedule period in seconds.
PollingInterval: This defines an interval an Integrator will poll to check if it should do work. If unset, it will default to 5 minutes.
CsvTranslations: To Get translations from csv column to user property (used for collecting data).
UserImportMode: User import mode (full or partial). Partial mode may allow to create user with invalid regular fields. Possible values are ‘Partial’ or ‘Full’
Code Block |
---|
AddNavPageAttribute /Root/NI System.Customer.NIUserCsvIntegrator.IsTestMode True AddNavPageAttribute /Root/NI System.Customer.Integrator.NIUserCsvIntegrator.CsvDelimiter "," AddNavPageAttribute /Root/NI System.Customer.Integrator.NIUserCsvIntegrator.ImportFilePath "E:UserImporter\incomingFile\incomingFile" AddNavPageAttribute /Root/NI System.Customer.Integrator.NIUserCsvIntegrator.ImportFileBackupPath "E:UserImporter\incomingFile\backupFile" AddNavPageAttribute /Root/NI System.Customer.Integrator.NIUserCsvIntegrator.SchedulePeriod "1" AddNavPageAttribute /Root/NI System.Customer.Integrator.NIUserCsvIntegrator.PollingInterval "1" AddNavPageAttribute /Root/NI System.Customer.Integrator.NIUserCsvIntegrator.CsvTranslations "OrgLoginId=UniqueUserID,FirstName=FirstName,LastName=LastName,Password=DateOfBirth,ContactEmail=PersonalEmailAddress" AddNavPageAttribute /Root/NI System.Customer.Integrator.NIUserCsvIntegrator.UserImportMode "Partial" |
...