mirror of
https://github.com/snazy2000/SnipeitPS.git
synced 2025-12-15 02:35:47 +00:00
72 lines
1.5 KiB
PowerShell
72 lines
1.5 KiB
PowerShell
<#
|
|
.SYNOPSIS
|
|
Checkin asset
|
|
.DESCRIPTION
|
|
Checks asset in from current user/localtion/asset
|
|
|
|
.PARAMETER ID
|
|
Unique ID For asset to checkin
|
|
|
|
.PARAMETER status_id
|
|
Change asset status to
|
|
|
|
.PARAMETER location_id
|
|
Location id to change asset location to
|
|
|
|
.PARAMETER notes
|
|
Notes about checkin
|
|
|
|
.PARAMETER url
|
|
URL of Snipeit system, can be set using Set-Info command
|
|
|
|
.PARAMETER apiKey
|
|
User's API Key for Snipeit, can be set using Set-Info command
|
|
|
|
.EXAMPLE
|
|
Remove-User -ID 44 -url $url -apiKey $secret -Verbose
|
|
#>
|
|
function Reset-AssetOwner() {
|
|
[CmdletBinding(
|
|
SupportsShouldProcess = $true,
|
|
ConfirmImpact = "Medium"
|
|
)]
|
|
|
|
Param(
|
|
[parameter(mandatory = $true)]
|
|
[int]$id,
|
|
|
|
[int]$status_id,
|
|
|
|
[int]$location_id,
|
|
|
|
[string]$notes,
|
|
|
|
[parameter(mandatory = $true)]
|
|
[string]$url,
|
|
|
|
[parameter(mandatory = $true)]
|
|
[string]$apiKey
|
|
)
|
|
|
|
$Values = @{
|
|
"notes" = $notes
|
|
}
|
|
|
|
if ($PSBoundParameters.ContainsKey('location_id')) { $Values.Add("location_id", $location_id) }
|
|
if ($PSBoundParameters.ContainsKey('status_id')) { $Values.Add("status_id", $status_id) }
|
|
|
|
$Body = $Values | ConvertTo-Json;
|
|
|
|
$Parameters = @{
|
|
Uri = "$url/api/v1/hardware/$id/checkin"
|
|
Method = 'POST'
|
|
Body = $Body
|
|
Token = $apiKey
|
|
}
|
|
|
|
If ($PSCmdlet.ShouldProcess("ShouldProcess?")) {
|
|
$result = Invoke-SnipeitMethod @Parameters
|
|
}
|
|
|
|
return $result
|
|
}
|