From b88da4da9f2fb2f324dad7bccfe4ed1e9580cd88 Mon Sep 17 00:00:00 2001 From: Nathaniel Webb Date: Fri, 13 Sep 2019 15:19:08 -0500 Subject: [PATCH] fix http method regression (#21) --- private/New-ApiPOSTRequest.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/private/New-ApiPOSTRequest.ps1 b/private/New-ApiPOSTRequest.ps1 index 62e7b07..2a2ca8d 100644 --- a/private/New-ApiPOSTRequest.ps1 +++ b/private/New-ApiPOSTRequest.ps1 @@ -71,7 +71,7 @@ Function New-ApiPOSTRequest { $IRMSplat = @{ Uri = $APIUrl Headers = $Headers - Method = 'PUT' + Method = 'POST' WebSession = $session UseBasicParsing = $true }