...
BatchSize: It defines how many users will be processed at a time.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.
Reduce To One Email Address Configuration
Sample Configuration:
Code Block | ||
---|---|---|
| ||
"ReduceToOneEmailAddressConfiguration": {
"MultipleEmailsDelimiter": ","
} |
If there are multiple email address provided, then those are separated by the MultipleEmailsDelimiter and only first email is considered.
Threshold Configuration
Sample Configuration:
Code Block | ||
---|---|---|
| ||
"ThresholdConfiguration" : {
"Thresholds" : [
{
"Name" : "MaxUsersPerImport",
"Value" : 1,
"Action" : "StopImport"
},
{
"Name" : "MaxDeactivateUsers",
"Value" : 1,
"Action" : "GenerateWarning"
},
{
"Name" : "MaxNewUsers",
"Value" : 4,
"Action" : "StopImport"
},
{
"Name" : "MaxOrgProfileValueUpdates",
"Value" : 1,
"Action" : "GenerateWarning"
},
{
"Name" : "MaxReactivateUsers",
"Value" : 1,
"Action" : "GenerateWarning"
},
{
"Name" : "MaxInvalidUsers",
"Value" : 1,
"Action" : "None"
}
]
} |
Thresholds This configuration is designed to monitor various user import related operations and to take different actions based on the configuration if certain thresholds are exceeded,.
...
GenerateWarning: If the configured threshold exceeds it only generates warning using mail but doesn’t stop import.
StopImport:: If the configured threshold exceeds it stops import immediately.
None: If the configured threshold exceeds it only logs the issue but doesn’t stop import.
Reduce To One Email Address Configuration
Sample Configuration:
Code Block | ||
---|---|---|
| ||
"ReduceToOneEmailAddressConfiguration": {
"MultipleEmailsDelimiter": ","
} |
...
:: If the configured threshold exceeds it stops import immediately.
None: If the configured threshold exceeds it only logs the issue but doesn’t stop import.