Public/New-GCConversationsVideosMeeting.ps1
|
<# .SYNOPSIS Creates a new video meeting. .DESCRIPTION Creates a new video meeting conversation in Genesys Cloud. Calls POST /api/v2/conversations/videos/meetings. .PARAMETER Body The request body containing meeting details. .EXAMPLE $meetingBody = @{ conferenceId = 'my-meeting-id' } New-GCConversationsVideosMeeting -Body $meetingBody .NOTES Genesys Cloud API: POST /api/v2/conversations/videos/meetings #> function New-GCConversationsVideosMeeting { [CmdletBinding()] param( [Parameter(Mandatory = $true)] [object]$Body ) $endpoint = "conversations/videos/meetings" return Invoke-GCApiRequest -Endpoint $endpoint -Method POST -Body $Body } |