We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following functionality should be supported by the module:
New-HipChatUser
-Name
-Roles
-Title
-MentionName
-GroupAdmin
-Timezone
-Password
-Email
-$PassThru
[HipChatPS.User]
if ($PassThru) {Get-HipChatUser -Id $resonse.id}
Get-HipChatUser
GET /v2/user
GET /v2/user/{id_or_email}
-Id
$_
Set-HipChatUser
[String]Name
[Array]Roles
[String]Title
[Hashtable]Presence @{status ; show}
[string]MentionName
[Switch]GroupAdmin
[String]Timezone
[SecureString]Password
[String]NewEmail
Remove-HipChatUser
Bool
The text was updated successfully, but these errors were encountered:
lipkau
No branches or pull requests
The following functionality should be supported by the module:
Create a new user
New-HipChatUser
POST /v2/user
Parameter
-Name
-Roles
-Title
-MentionName
-GroupAdmin
-Timezone
-Password
-Email
-$PassThru
Output
[HipChatPS.User]
Get User
Get-HipChatUser
No Parameter
GET /v2/user
Parameter
GET /v2/user/{id_or_email}
-Id
$_
to by of type[HipChatPS.User]
-Email
Output
[HipChatPS.User]
Update a user
Set-HipChatUser
PUT /v2/user/{id_or_email}
Parameter
-Id
$_
to by of type[HipChatPS.User]
-Email
[String]Name
[Array]Roles
[String]Title
[Hashtable]Presence @{status ; show}
[string]MentionName
[Switch]GroupAdmin
[String]Timezone
[SecureString]Password
[String]NewEmail
Output
[HipChatPS.User]
Delete a user
Remove-HipChatUser
DELETE /v2/user/{id_or_email}
Parameter
-Id
$_
to by of type[HipChatPS.User]
-Email
Output
Bool
The text was updated successfully, but these errors were encountered: