Public/Uninstall-CbSensor.ps1

<#
    .SYNOPSIS
    Uninstall Carbon Black sensor from a device.
    Official Carbon Black documentation: https://developer.carbonblack.com/reference/carbon-black-cloud/platform/latest/devices-api/#uninstall-sensor
     
    .PARAMETER SensorID
    Sensor ID of device to uninstall sensor from. This is the safest method and ensures you target the correct device.
 
    .PARAMETER ComputerName
    Name of the device to uninstall sensor from. Use at your own risk, if there are multiple devices named similar to the value specified you may target a device you don't intend to.
    Highly recommend using in conjunction with -WhatIf first to ensure that the intended device is targeted.
     
    .EXAMPLE
    Uninstall-CbSensor -SensorID 12345678
 
    .EXAMPLE
    Uninstall-CbSensor -ComputerName "tim-pc"
 
#>


function Uninstall-CbSensor {

    [CmdletBinding(SupportsShouldProcess)]
    param (

        [Parameter(ParameterSetName='ComputerName', Mandatory=$true)]
        [string]$ComputerName,

        [Parameter(ParameterSetName='SensorID', Mandatory=$true)]
        [int]$SensorID

    )

    $jsonBody = "{
    ""action_type"": ""UNINSTALL_SENSOR""
}"


    $psObjBody = $jsonBody | ConvertFrom-Json    

    if ($SensorID) {$psObjBody | Add-Member -Name "device_id" -Value @($SensorID) -MemberType NoteProperty}
    if ($ComputerName) {
        try {
            $device = Get-CbDevice -Search $ComputerName
        }
        catch {
            throw "Unable to find device."
            break
        }
        $psObjBody | Add-Member -Name "device_id" -Value @($device.id) -MemberType NoteProperty
    }

    $jsonBody = $psObjBody | ConvertTo-Json

    $Parameters = @{
        UriPreOrgKey  = "/appservices/v6/orgs/"
        UriPostOrgKey = "/device_actions"
        Method     = "Post"
        Body       = $jsonBody
    }

    if ($PSCmdlet.ShouldProcess($device.name, "uninstall sensor")) {
        $result = Invoke-CbMethod @Parameters
        $result
    }

}