New-AMChoiceSetInput
New-AMChoiceSetInput
SYNOPSIS
Creates a ChoiceSetInput element for an Adaptive Card.
SYNTAX
1
New-AMChoiceSetInput [-Id] <String> [-Label <String>] [-Choices] <Array> [-IsMultiSelect <Boolean>] [-Style <String>] [-Value <String>] [-Placeholder <String>] [-IsVisible <Boolean>] [-Verbose <SwitchParameter>] [-Debug <SwitchParameter>] [-ErrorAction <ActionPreference>] [-WarningAction <ActionPreference>] [-InformationAction <ActionPreference>] [-ProgressAction <ActionPreference>] [-ErrorVariable <String>] [-WarningVariable <String>] [-InformationVariable <String>] [-OutVariable <String>] [-OutBuffer <Int32>] [-PipelineVariable <String>] [<CommonParameters>]
DESCRIPTION
Creates a ChoiceSetInput element that allows users to select from a list of options. This element can be rendered as a dropdown list, radio button group, or checkbox list depending on the Style and IsMultiSelect parameters.
ChoiceSetInputs are useful for collecting structured input from users, such as selecting preferences, categories, options, or making decisions from predefined choices.
EXAMPLES
EXAMPLE 1
1
2
3
4
5
6
7
8
# Create a simple dropdown list
$colorChoices = @(
New-AMChoice -Title "Red" -Value "red"
New-AMChoice -Title "Green" -Value "green"
New-AMChoice -Title "Blue" -Value "blue"
)
$colorDropdown = New-AMChoiceSetInput -Id "color" -Label "Select a color:" -Choices $colorChoices
Add-AMElement -Card $card -Element $colorDropdown
EXAMPLE 2
1
2
3
4
5
6
7
8
# Create a radio button group with a default selection
$priorityChoices = @(
New-AMChoice -Title "High" -Value "high"
New-AMChoice -Title "Medium" -Value "medium"
New-AMChoice -Title "Low" -Value "low"
)
$priorityInput = New-AMChoiceSetInput -Id "priority" -Label "Priority level:" `
-Choices $priorityChoices -Style "expanded" -Value "medium"
EXAMPLE 3
1
2
3
4
5
6
7
8
9
10
# Create a multi-select checkbox list
$toppingsChoices = @(
New-AMChoice -Title "Cheese" -Value "cheese"
New-AMChoice -Title "Pepperoni" -Value "pepperoni"
New-AMChoice -Title "Mushrooms" -Value "mushrooms"
New-AMChoice -Title "Onions" -Value "onions"
New-AMChoice -Title "Peppers" -Value "peppers"
)
$toppingsInput = New-AMChoiceSetInput -Id "toppings" -Label "Select toppings:" `
-Choices $toppingsChoices -IsMultiSelect $true -Style "expanded"
PARAMETERS
-Id
A unique identifier for the input element. This ID will be used when the card is submitted to identify the selected value(s).
1
2
3
4
5
6
7
8
9
Type: String
Parameter Sets: (All)
Aliases: None
Required: True
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-Label
Optional text label to display above the input field, describing what the input is for.
1
2
3
4
5
6
7
8
9
Type: String
Parameter Sets: (All)
Aliases: None
Required: False
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-Choices
An array of choice objects created using the New-AMChoice function. Each choice should have a title (displayed text) and value (data submitted when selected).
1
2
3
4
5
6
7
8
9
Type: Array
Parameter Sets: (All)
Aliases: None
Required: True
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-IsMultiSelect
Determines whether multiple choices can be selected. When set to $true, the input allows multiple selections (checkboxes). When set to $false (default), only a single option can be selected (dropdown or radio buttons).
1
2
3
4
5
6
7
8
9
Type: Boolean
Parameter Sets: (All)
Aliases: None
Required: False
Position: 3
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-Style
Controls how the choices are displayed:
- “compact”: Renders as a dropdown list (default)
- “expanded”: Renders as a set of radio buttons or checkboxes
- “filtered”: Renders as a dropdown with filtering capability (for long lists)
1
2
3
4
5
6
7
8
9
Type: String
Parameter Sets: (All)
Aliases: None
Required: False
Position: 4
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-Value
Optional default selected value(s). For single-select, this should match the value of one choice. For multi-select, this should be a comma-separated list of values.
1
2
3
4
5
6
7
8
9
Type: String
Parameter Sets: (All)
Aliases: None
Required: False
Position: 5
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-Placeholder
Optional text to display when no selection has been made. Only applicable for dropdown style.
1
2
3
4
5
6
7
8
9
Type: String
Parameter Sets: (All)
Aliases: None
Required: False
Position: 6
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-IsVisible
Controls whether the input is initially visible or hidden.
1
2
3
4
5
6
7
8
9
Type: Boolean
Parameter Sets: (All)
Aliases: None
Required: False
Position: 7
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
INPUTS
None. You cannot pipe input to New-AMChoiceSetInput.
OUTPUTS
System.Collections.Hashtable
Returns a hashtable representing the ChoiceSetInput element.
NOTES
The ChoiceSetInput is one of the most versatile input elements in Adaptive Cards.
Style recommendations:
- Use “compact” (dropdown) when you have many options or limited space
- Use “expanded” (radio/checkbox) when you have fewer options (2-5) and want them all visible
- Use “filtered” when you have a long list that users might need to search through
Remember that the value submitted will be the “value” property of the choice, not the “title” that is displayed to the user.