PowerShell Invoke-RestMethod

Récupération de la réponse

Invoke-RestMethod -Uri https://jsonplaceholder.typicode.com/todos/1

Récupération partielle des propriétés

Invoke-RestMethod -Uri https://jsonplaceholder.typicode.com/todos/1 | Format-Table -Property title, completed

Ajouter des filtres avec l'esperluette (&)

Invoke-RestMethod -Uri https://jsonplaceholder.typicode.com/todos?userId=1"&"completed=false | Format-Table -Property title, completed

Commentaires