mirror of
https://github.com/snazy2000/SnipeitPS.git
synced 2025-12-13 18:02:30 +00:00
Added Get-CustomField
This commit is contained in:
parent
51bf9f43cd
commit
f175d33951
2 changed files with 35 additions and 0 deletions
35
SnipeitPS/Public/Get-CustomField.ps1
Normal file
35
SnipeitPS/Public/Get-CustomField.ps1
Normal 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.
Loading…
Add table
Reference in a new issue