Skip to main content

Sync changed users from LDAP

Resource Informations

NameValue
Requires authentication?Yes
Rate limited?No

Request

Request headers

KeyValue
AuthorizationBearer token
Content-Typeapplication/json

HTTP request URL for SSMS

POST https://{tenantId}.{hostname}/digitanium/v4/ldap/{componentId}/changedusersync?action=triggerChangedUsersSync

HTTP request URL for SHIFT

POST https://{hostname}/auth/realms/{tenantId}/v3_ldap/sync/{componentId}/changedusersync?action=triggerChangedUsersSync 
note

At this moment, this API is applicable for SSMS based installations.

Parameters

Field NameTypeDescription
componentIdStringComponent Id of the LDAP (Path Parameter)
actionStringAction should be in 'triggerChangedUsersSync' (Query Parameter)

Request body

No Request Body.

Response

Field NameTypeDescription
messageStringMessage explains result of the API call. Refer Response status Information for details.
statusStringThe status of the API call.
subSystemIntegersubSystem categorizes the type of API that has been called. Refer Subsystem details for details.
dataObjectsSynced users details

Sample Response

{
"message": "Success",
"status": "OK",
"subSystem": 9,
"data": {
"ignored": false,
"added": 0,
"updated": 0,
"removed": 0,
"failed": 0,
"status": "0 imported users, 0 updated users"
}
}