We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc72820 commit 55bd578Copy full SHA for 55bd578
SnipeitPS/Public/Get-Category.ps1
@@ -19,6 +19,8 @@ Get-Category -url "https://assets.example.com" -token "token..." | Where-Object
19
function Get-Category()
20
{
21
Param(
22
+ [string]$search,
23
+
24
[parameter(mandatory=$true)]
25
[string]$url,
26
SnipeitPS/Public/Set-User.ps1
@@ -116,7 +116,6 @@ function Set-User() {
116
117
$Body = $Values | ConvertTo-Json;
118
119
- $Body
120
$Parameters = @{
121
Uri = "$url/api/v1/users/$id"
122
Method = 'PATCH'
0 commit comments