Commands › Microsoft Teams

Get-CsMainlineAttendantAppointmentBookingFlow

Microsoft Teams MicrosoftTeams Get-*

The Get-CsMainlineAttendantAppointmentBookingFlow cmdlet returns the identified Mainline attendant appointment booking flow.

Quick start script

# Get-CsMainlineAttendantAppointmentBookingFlow — 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-CsMainlineAttendantAppointmentBookingFlow | Format-List

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

Syntax

Get-CsMainlineAttendantAppointmentBookingFlow [-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 appointment booking flow.
-Tenant Guid This parameter is reserved for Microsoft internal use only.
-First Int32 The First parameter gets the first N appointment flows, up to a maximum of 100 at a time. When not specified, the default behavior is to return the first 100 appointment flows. It is intended to be used in...
-Skip Int32 The Skip parameter skips the first N appointment 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 appointment booking flows in descending order
-NameFilter String The NameFilter parameter returns appointment 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.