Private/Invoke-SignApi.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
function Invoke-SignApi { [CmdletBinding()] param ( #api path [string] $api, #request body [System.Collections.Hashtable] $body = @{}, [string] $method='GET' ) begin { $apiuri = "$($script:siteinfo.url)$api" $header = @{ "Authorization" = "Bearer $(ConvertFrom-SecureString -AsPlainText -SecureString $script:siteinfo.token )" "Accept" = "application/json" } if ($method -ne 'GET' -and $null -eq $body['file'] ) { [string]$body = [System.Collections.Hashtable]$body | ConvertTo-Json -Depth 7 write-debug "Body: $body" $header['Content-Type'] = 'application/json' } } process { if ($null -eq $body['file']) { Invoke-RestMethod -Uri $apiuri -Method $method -Body $body -Headers $header } else { write-debug "Body: $body" Invoke-RestMethod -Uri $apiuri -Method $method -Form $body -Headers $header } } end { } } |