Enables scripted content fragments to access LDAP Groups
Methods
List
List Overload 1
Searches for LDAP groups
Velocity
#set($pagedListResponse = $core_v2_ldapGroups.List($matchText))
JavaScript
var pagedListResponse = core_v2_ldapGroups.List(matchText);
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
matchText | String | Match Text | Required |
List Overload 2
Searches for LDAP groups
Velocity
#set($pagedListResponse = $core_v2_ldapGroups.List($matchText, "%{ PageIndex = $pageIndexArg, PageSize = $pageSizeArg }"))
JavaScript
var pagedListResponse = core_v2_ldapGroups.List(matchText, { PageIndex: pageIndexArg, PageSize: pageSizeArg });
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
matchText | String | Match Text | Required | ||
options | Options | Set of optional parameters including: | Required | ||
PageIndex | Int32 | Specify the page number of paged results to return. Zero-based index. | Optional | 0 | |
PageSize | Int32 | Specify the number of results to return per page. | Optional | 20 |