Additional Configuration Parameters
You must add the following attributes in the connector using the Identity Security Cloud REST API. Refer to Best Practices: Identity Security Cloud REST API Authentication and Identity Security Cloud REST API - Update Source (Partial).
(Only applicable for create service principals and applications that are created making use of gallery templates).
The time, in seconds, to wait after the create service principal and application, and before making the update for basic SAML configuration. The default is 24 seconds.
For example, <entry key="createAppTemplateSPNDelay" value="30"/>
To enable / disable reading of exchange online attributes from exchange system (real time exchange online attribute values) during explicit get object call for specified user, set the value of performGetObjectForEXOAttributes
attribute to true
Note
This configuration parameter is applicable only for get object call. Enabling this configuration parameter will degrade performance of get object calls.
Time in seconds to wait after create account and before calling get account. The default is 20 seconds.
(Applicable for B2C tenant only) If set to true B2C user memberships is fetched for all users. The default value is false.
Enables use of Microsoft Graph API for all connector operations.
To use the latest attributes and features supported by Microsoft Graph API, add the useMSGraphAPI
attribute using Identity Security Cloud REST API and set it to true.
The Microsoft Graph API version is configurable.
You must add the msgraph-api-version
attribute in the source using the Identity Security Cloud REST API.
The value of the attribute must be a valid version stated by Microsoft for MS Graph APIs.
Enable to skip encoding of ImmutableID
while creating a federated user. Enable this feature by skipEncodingImmutableID
parameter to true
. The default value is false
.
To disable fetching of service plans during account and group aggregation, set the value of fetchServicePlan
to false
using the
curl -L -X PATCH 'https://<org>.api.identitynow.com/v3/sources/:id' \
-H 'Content-Type: application/json-patch+json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '[
{
"op": "add",
"path": "/connectorAttributes/fetchServicePlan",
"value": false
}
]