Method patch is not in the new version of powershell universal ( version 5.0.16 )
Im having issues with my api endpoints cause they dont function anymore since i changed to 5.0.16 does anyone know what Method i now need to use instead of Patch since patch is non existed in this version?
Recommended Answer
It looks like patch is missing from the method selector in the UI. Your patch endpoints should still. I just validated that.
PS C:\Users\adamr> Invoke-RestMethod -Uri 'http://localhost:5000/mypatch' -Headers @{} -Method 'PATCH'
Test
I will add patch to the UI for 5.2.
Adam Driscoll
PowerShell Expert and Developer at Devolutions
7458b6987caaf7cbb075bcd43c1dcf0964fcad1f.png
It looks like patch is missing from the method selector in the UI. Your patch endpoints should still. I just validated that.
PS C:\Users\adamr> Invoke-RestMethod -Uri 'http://localhost:5000/mypatch' -Headers @{} -Method 'PATCH'
Test
I will add patch to the UI for 5.2.
Adam Driscoll
PowerShell Expert and Developer at Devolutions
7458b6987caaf7cbb075bcd43c1dcf0964fcad1f.png
that sounds great, thank you!