add Get-Help section

This commit is contained in:
James 2022-03-31 22:24:41 +01:00
parent 5cc813f849
commit e4940a7b45

View File

@ -1,3 +1,22 @@
<#
.Synopsis
Get all joined members for a given Room ID.
.Description
Get all joined members for a given Room ID from _matrix/client/v3/rooms/{roomId}/joined_members. See https://spec.matrix.org/v1.2/client-server-api/#get_matrixclientv3roomsroomidjoined_members.
.Parameter ServerUrl
URL for the Matrix server to log into, for example "https://matrix.example.com".
.Parameter AccessToken
A SecureString containing the Matrix access token.
.Parameter RoomId
The Matrix room ID to retrieve joined members for.
.Example
Get-MatrixJoinedMembers -ServerUrl $server -AccessToken $token -RoomId "!ehXvUhWNASUkSLvAGP:matrix.org"
#>
function Get-MatrixJoinedMembers {
param(
[Parameter(Mandatory)]