Pax8API/Public/VendorProvisioning/Get-Pax8AllUnfulfilledProvisionRequests.ps1

<#
.SYNOPSIS
Get All Unfulfilled Provision Requests
.DESCRIPTION
Generated from vendor-provisioning-endpoints.json.
OpenAPI: GET /provision-requests/unfulfilled
Scope: VendorProvisioning. Audience: api://provisioning.
.PARAMETER Raw
Returns the unmodified API response instead of unwrapping paginated content.
.EXAMPLE
Get-Pax8AllUnfulfilledProvisionRequests
.LINK
https://devx.pax8.com/openapi/vendor-provisioning-endpoints.json
#>

function Get-Pax8AllUnfulfilledProvisionRequests {
    [CmdletBinding()]
    param (
        [switch]$Raw
    )

    process {
        $boundParameters = @{}
        foreach ($entry in $PSBoundParameters.GetEnumerator()) {
            $boundParameters[$entry.Key] = $entry.Value
        }

        Invoke-Pax8ApiOperation -CommandName $MyInvocation.MyCommand.Name -Parameters $boundParameters
    }
}