Add Member To Groups
Add a single member to multiple groups.
Introduction
Configuration
Name
Description
Default value
Mandatory
Expanded
{
"name": "ActiveDirectoryAddMemberToGroups",
"config": {
"namespace": "ldap01",
"member_id": "${request.selected_ad_id}",
"id_property": "id",
"groups_identifier": "@json:${request.ad_pending_add.all}"
}
}Example pipe data
"selected_ad_id" : "CN=Britt Thomasson,OU=Demo,DC=company,DC=local",
"ad_pending_add": [
{
"id": "CN=AWS administrator,OU=access_review,OU=Governance,OU=IdM_demo,OU=Product_Testing,DC=company,DC=local",
"description": "Test",
"cn": "AWS administrator",
"sAMAccountName": "AWS administrator"
},
{
"id": "CN=Cert Publishers,CN=Users,DC=company,DC=local",
"description": "Members of this group are permitted to publish certificates to the directory",
"cn": "Cert Publishers",
"sAMAccountName": "Cert Publishers"
}
],