PrivateFunctions/Archive-SlackChannel.ps1

<#
.SYNOPSIS
    This function archives a channel in Slack.
.DESCRIPTION
    This function archives a channel in Slack.
    The scope required to call this function is "channels:write".
#>

function Archive-SlackChannel {
    [CmdletBinding(PositionalBinding=$false)]
    [OutputType([Bool])]
    param(
        # The authentication token for Slack
        [Parameter(Mandatory=$true)]
        [ValidateNotNullOrEmpty()]
        [String]$token,

        # The name of the channel to archive
        [Parameter(Mandatory=$true)]
        [ValidateNotNullOrEmpty()]
        [String]$channelName
    )

    # Retrieve the ID for the specified channel and verify that the channel exists
    $channelID = (Get-SlackChannel -Token $token -ChannelName $channelName).id
    if (!$channelID) {
        throw "The channel '$($channelName)' cannot be found in Slack."
    }

    # Prepare the API call parameters
    $invokeRestMethodParams = @{
        Uri     = "https://slack.com/api/channels.archive"
        Method  = "POST"
        Headers = @{
            "Content-Type" = "application/json"
            Authorization  = "Bearer $($token)"
        }
        Body    = @{
            channel = "$($channelID)"
        } | ConvertTo-Json
    }

    # Invoke the call
    $response = Invoke-RestMethod @invokeRestMethodParams

    # Verify that the archiving is successful
    if ($response.ok) {
        return $true
    }
    else {
        throw "Failed to archive channel '$($channelName)' with the error message:`r`n$($response.error)."
    }
}