Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
  "UserImporterConfiguration": {
    "BatchSize": "400",
    "MaxJsonLength": "4194304",
    "ExpireInitialPassword": "true",
    "ResetPasswordOnUserReactivation": "false",
	"UserImportMode" : "Partial",
	"Thresholds": [
		{
			"Name" : "MaxUsersPerImport",
			"Value" : 1,
			"Action" : "GenerateWarning"
		},
		{
			"Name" : "MaxDeactivateUsers",
			"Value" : 1,
			"Action" : "GenerateWarning"
		},
		{
			"Name" : "MaxNewUsers",
			"Value" : 1,
			"Action" : "GenerateWarning"
		},
		{
			"Name" : "MaxOrgProfileValueUpdates",
			"Value" : 1,
			"Action" : "GenerateWarning"
		},
		{
			"Name" : "MaxReactivateUsers",
			"Value" : 1,
			"Action" : "GenerateWarning"
		},
		{
			"Name" : "MaxInvalidUsers",
			"Value" : 1,
			"Action" : "None"
		}
	]
  }

BatchSize: It defines how many users will be processed at a time.

MaxJsonLength: The maximum length of the json file

ExpireInitialPassword: if the initial Password needs to expire on first time login or not. True by default.

ResetPasswordOnUserReactivation: Decides whether password will be reset after reactivation or not.

UserImportMode: Possible Values Can be Partial or Full. If UserImportMode=Full, the user doesn’t get created if any of the fields is invalid. In case of If UserImportMode=Partial, user can be created even if any regular fields are incorrect.

...