LDAP - Delete User node
The LDAP - Delete User node removes a user entry from the LDAP directory.
This node is available in: Authentication, Admin, Self Service, API, Consent, Library, Custom, User Defined
LDAP configuration
Defines the connection protocol used to communicate with the LDAP server.
Option available:
- ldap: Standard (non-secure) connection (port 389).
- ldaps: Secure connection over SSL/TLS (port 636).
- start-tls: Connection starts as a standard LDAP connection (typically on port 389) and is then upgraded to a secure channel using TLS.
Specifies the hostname or IP address of the LDAP server.
Defines the port used to connect to the LDAP server.
Typical values:
- 389 for LDAP
- 636 for LDAPS
Specifies the maximum time (in seconds) to wait for a connection to the LDAP server.
A value of 0 usually means no timeout.
The Distinguished Name (DN) of the administrative user used to perform the LDAP search operation.
The password associated with the admin user DN.
Defines the base context (starting point) in the LDAP directory where the user search will be performed.
Defines the scope of the LDAP search:
- base: Searches only the base DN
- one: Searches one level under the base DN
- sub: Searches the entire subtree under the base DN
Specifies the LDAP search filter used to locate the user.
Example:(uid={{username}})
The filter can include variables to dynamically match user input.
Default output node
- Success
- User Not Found
- Failure
JSON metadata
{
"name": "ldap_delete_user",
"active": true,
"bundleName": "default-nodes",
"bundleVersion": "1.0",
"category": "ldap_ad_user_management",
"deprecated": false,
"displayName": [{
"lang": "en",
"value": "LDAP - Delete User"
}, {
"lang": "it",
"value": "LDAP - Delete User"
}
],
"nodeName": "LdapDeleteUser",
"index": 3,
"inputs": [{
"name": "Input"
}
],
"outputs": [{
"name": "Success",
"level": "success"
}, {
"name": "NoUserFound",
"level": "warning"
}, {
"name": "Failure",
"level": "error"
}
]
}