mirror of
https://github.com/snazy2000/SnipeitPS.git
synced 2025-12-13 18:02:30 +00:00
117 lines
2.1 KiB
PowerShell
117 lines
2.1 KiB
PowerShell
<#
|
|
.SYNOPSIS
|
|
Creates a supplier
|
|
|
|
.DESCRIPTION
|
|
Creates a new supplier on Snipe-It system
|
|
|
|
.PARAMETER name
|
|
Department Name
|
|
|
|
.PARAMETER address
|
|
Address line 1 of supplier
|
|
|
|
.PARAMETER address2
|
|
Address line 1 of supplier
|
|
|
|
.PARAMETER city
|
|
City
|
|
|
|
.PARAMETER state
|
|
State
|
|
|
|
.PARAMETER country
|
|
Country
|
|
|
|
.PARAMETER zip
|
|
Zip code
|
|
|
|
.PARAMETER phone
|
|
Phone number
|
|
|
|
.PARAMETER fax
|
|
Fax number
|
|
|
|
.PARAMETER email
|
|
Email address
|
|
|
|
.PARAMETER contact
|
|
Contact person
|
|
|
|
.PARAMETER notes
|
|
Email address
|
|
|
|
.PARAMETER image
|
|
Image file name and path for item
|
|
|
|
.PARAMETER url
|
|
URL of Snipeit system, can be set using Set-SnipeitInfo command
|
|
|
|
.PARAMETER apiKey
|
|
Users API Key for Snipeit, can be set using Set-SnipeitInfo command
|
|
|
|
.EXAMPLE
|
|
New-SnipeitDepartment -name "Department1" -company_id 1 -localtion_id 1 -manager_id 3
|
|
|
|
#>
|
|
|
|
function New-SnipeitSupplier() {
|
|
[CmdletBinding(
|
|
SupportsShouldProcess = $true,
|
|
ConfirmImpact = "Low"
|
|
)]
|
|
|
|
Param(
|
|
[parameter(mandatory = $true)]
|
|
[string]$name,
|
|
|
|
[string]$address,
|
|
|
|
[string]$address2,
|
|
|
|
[string]$city,
|
|
|
|
[string]$state,
|
|
|
|
[string]$country,
|
|
|
|
[string]$zip,
|
|
|
|
[string]$phone,
|
|
|
|
[string]$fax,
|
|
|
|
[string]$email,
|
|
|
|
[string]$contact,
|
|
|
|
[string]$notes,
|
|
|
|
[ValidateScript({Test-Path $_})]
|
|
[string]$image,
|
|
|
|
[parameter(mandatory = $false)]
|
|
[string]$url,
|
|
|
|
[parameter(mandatory = $false)]
|
|
[string]$apiKey
|
|
)
|
|
|
|
Test-SnipeitAlias -invocationName $MyInvocation.InvocationName -commandName $MyInvocation.MyCommand.Name
|
|
|
|
$Values = . Get-ParameterValue -Parameters $MyInvocation.MyCommand.Parameters -BoundParameters $PSBoundParameters
|
|
|
|
$Parameters = @{
|
|
Uri = "$url/api/v1/suppilers"
|
|
Method = 'POST'
|
|
Body = $Values
|
|
Token = $apiKey
|
|
}
|
|
|
|
If ($PSCmdlet.ShouldProcess("ShouldProcess?")) {
|
|
$result = Invoke-SnipeitMethod @Parameters
|
|
}
|
|
|
|
$result
|
|
}
|
|
|