Restore-QlikSnapshot.ps1

function Restore-QlikSnapshot {
    <#
    .SYNOPSIS
    This function ...
 
    .DESCRIPTION
    A bit more description
 
    .PARAMETER FromPipeline
    Shows how to process input from the pipeline, remaining parameters or by named parameter.
 
    .EXAMPLE
    Restore-QlikSnapshot 'abc'
 
    Description of the example.
 
    #>


    <# Enable -Confirm and -WhatIf. #>
    [CmdletBinding(SupportsShouldProcess = $true)]
    param(

    )

    begin {
    }

    process {
    return Invoke-QlikPost "/qrs/sync/snapshot/restore"
  }

    end {
    }
}

if ($loadingModule) {
    Export-ModuleMember -Function 'Restore-QlikSnapshot'
}