mirror of
https://github.com/snazy2000/SnipeitPS.git
synced 2025-12-15 02:35:47 +00:00
16 lines
305 B
PowerShell
16 lines
305 B
PowerShell
function Get-Category()
|
|
{
|
|
Param(
|
|
[parameter(mandatory=$true)]
|
|
[string]$url,
|
|
|
|
[parameter(mandatory=$true)]
|
|
[string]$apiKey
|
|
)
|
|
|
|
$result = Invoke-Method -URi "$url/api/v1/categories" `
|
|
-Method GET `
|
|
-Token $apiKey
|
|
|
|
$result
|
|
}
|