Pax8API/Public/Quoting/Get-Pax8LibraryAttachmentsMetadata.ps1
|
<#
.SYNOPSIS Get attachments from the library .DESCRIPTION Returns the attachment entries associated from the library. OpenAPI: GET /v2/quote-attachments Scope: Quoting. Audience: https://api.pax8.com. .PARAMETER Raw Returns the unmodified API response instead of unwrapping paginated content. .EXAMPLE Get-Pax8LibraryAttachmentsMetadata .LINK https://devx.pax8.com/openapi/quoting-endpoints.json #> function Get-Pax8LibraryAttachmentsMetadata { [CmdletBinding()] param ( [switch]$Raw ) process { $boundParameters = @{} foreach ($entry in $PSBoundParameters.GetEnumerator()) { $boundParameters[$entry.Key] = $entry.Value } Invoke-Pax8ApiOperation -CommandName $MyInvocation.MyCommand.Name -Parameters $boundParameters } } |