Commands › Microsoft Teams

Get-CsMainlineAttendantQuestionAnswerFlow

Microsoft Teams MicrosoftTeams Get-*

The Get-CsMainlineAttendantQuestionAnswerFlow cmdlet returns the identified Mainline attendant question and answer flow.

Quick start script

# Get-CsMainlineAttendantQuestionAnswerFlow — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-MicrosoftTeams -CertificateThumbprint $thumb -ApplicationId $appId -TenantId $tenantId

# 2. Run and inspect
Get-CsMainlineAttendantQuestionAnswerFlow | Format-List

# 3. Export for evidence / drift tracking
Get-CsMainlineAttendantQuestionAnswerFlow | Export-Clixml .\CsMainlineAttendantQuestionAnswerFlow-$(Get-Date -Format yyyyMMdd).xml

Syntax

Get-CsMainlineAttendantQuestionAnswerFlow [-Identity <Guid>] [-Tenant <Guid>] [-First <Int32>] [-Skip <Int32>] [-SortBy <String>] [-Descending] [-NameFilter <String>] [<CommonParameters>]

Parameters (7)

ParameterTypeRequiredWhat it controls
-Identity Guid The identifier of the question and answer flow.
-Tenant Guid This parameter is reserved for Microsoft internal use only.
-First Int32 The First parameter gets the first N question and answer flows, up to a maximum of 100 at a time. When not specified, the default behavior is to return the first 100 question and answer flows. It is intended to be...
-Skip Int32 The Skip parameter skips the first N question and answer flows. It is intended to be used in conjunction with the `-First` parameter for pagination purposes.
-SortBy String The SortBy parameter specifies the property used to sort.
-Descending SwitchParameter The Descending parameter sorts question and answer flows in descending order.
-NameFilter String The NameFilter parameter returns question and answer booking flows where the name contains specified string

Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.