Skip to content

RestAPI

neztach edited this page Aug 31, 2023 · 1 revision
Code Explanation
$Params = @{
    Uri = 'https://api.github.com/events'
    Method = 'Get'
}
Invoke-RestMethod @Params
Call a REST API, using the HTTP GET method

Clone this wiki locally