Added Get-CustomField

This commit is contained in:
Felix 2018-06-25 16:06:35 +02:00
parent 51bf9f43cd
commit f175d33951
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,35 @@
<#
.SYNOPSIS
# Returns a list of all Snipe-IT custom fields
.PARAMETER url
URL of Snipeit system, can be set using Set-Info command
.PARAMETER apiKey
Users API Key for Snipeit, can be set using Set-Info command
.EXAMPLE
Get-Field -url "https://assets.example.com" -token "token..."
#>
function Get-CustomField()
{
Param(
[parameter(mandatory = $true)]
[string]$url,
[parameter(mandatory = $true)]
[string]$apiKey
)
$Parameters = @{
Uri = "$url/api/v1/fields"
Method = 'Get'
Token = $apiKey
}
$result = Invoke-SnipeitMethod @Parameters
$result
}

Binary file not shown.