Examples/04-New-AccessRequest.ps1

#Requires -Module psSCA
<#
    Submits a new access request. Confirm your tenant's required fields with
    Get-SCAAccessRequestForm before adjusting the request body below.
#>


$request = @{
    reason         = 'Investigate production incident 4471'
    targetCategory = 'CloudConsole'
}

New-SCAAccessRequest -InputObject $request