Forms
HomeIntegrityControlSolutionsManagement Center
2.0.0 Forms
2.0.0 Forms
  • The service
    • Overview
      • Forms and IAM
      • Products in the Control suite
    • About this release
      • Release notes
      • Breaking changes
    • Key components
      • Flow
        • Authenication & authorisation
      • Step
        • Layout
      • Control
        • Basic controls
          • Input
            • Properties
          • Markdown
            • Properties
          • ValuePicker
            • Properties
        • Advanced controls
          • Selector
            • Properties
          • ActiveDirectoryUserEditGroupMember
            • Properties
          • ActiveDirectoryGroupEditGroupMember
            • Properties
          • ActiveDirectorySingleSelect
            • Properties
          • Attestor
            • Properties
          • EntraGroupSelect
            • Properties
          • EntraGroupEditGroupMember
            • Properties
          • EntraUserSelect
            • Properties
          • EntraUserEditGroupMember
            • Properties
          • TextArea
            • Properties
    • Installation
      • Container
      • Linux
      • Windows
  • Modules
    • Forms
      • Properties
    • Pipes
      • Properties
    • Other modules
  • ATTESTATION
    • Setup
  • User interface (UI)
    • Overview
Powered by GitBook
On this page
Export as PDF
  1. The service
  2. Key components
  3. Control
  4. Advanced controls
  5. ActiveDirectorySingleSelect

Properties

Use to select one option from a list that is populated from the result of an LDAP query.

Control type: ActiveDirectorySingleSelect

Configuration

Name
Desciption
Default value
Mandatory

required

Must have a value when leaving the step. true/false

false

readonly

Open to edit by enduser. true/false

false

base_dn

Search base DN

scope

Search scope

attributes

Query these attributes

pre_filter

Display current value if present

filter

Query filter

display_key

This attribute is displayed to the user

value_key

This attribute is the selected value.

{
  "id": "<enter_unique_id_for_this_control>",
  "type": "ActiveDirectorySingleSelect",
  "config": {
    "attributes": [
      "displayName",
      "sAMAccountName"
    ],
    "base_dn": "OU=Product_Testing,DC=company,DC=local",
    "scope": "SUB",
    "pre_filter": "(distinguishedName={{flow.manager}})",
    "filter": "(&(|(givenName={{search_query}})(sn={{search_query}}))(!(sAMAccountName={{flow.selectedUser}})))",
    "display_key": "cn",
    "value_key": "distinguishedName"
 }
}

Search filter

The search filter is a template that has access to all data that is available in the flow. Additionally, the template can use the parameter search_query, that contains the user input.

The attributes defined by display_key and value_key are always queried.

PreviousActiveDirectorySingleSelectNextAttestor

Last updated 5 months ago