Add Group To Members
Add multiple members to a single group.
Introduction
Configuration
Name
Description
Default value
Mandatory
Expanded
{
"name": "ActiveDirectoryAddGroupToMembers",
"config": {
"namespace": "ldap01",
"id_property": "id",
"group_id": "${request.selected_ad_id}",
"members_identifier": "@json:${request.ad_pending_add.all}"
}
}Example pipe data
"selected_ad_id" : "CN=Cert Publishers,CN=Users,DC=company,DC=local",
"ad_pending_add" : [
{
"id" : "CN=Felix Andreasson,OU=Demo,DC=company,DC=local",
"displayName" : "Felix Andreasson"
},
{
"id" : "CN=Eva Ek,OU=Demo,DC=company,DC=local",
"displayName" : "Eva Ek"
}
],