All content on this Wiki is non-binding and any individual opinions expressed should not be considered indicative of the policies or positions of CDISC or any other organization.
...
Code Block | ||
---|---|---|
| ||
$headers = @{} $headers.Add('api-key','key:abcdef0123456789abcdef0123456789') $headers.Add('Accept','application/json') $url = "https://library.cdisc.org/api/mdr/products" $result = Invoke-WebRequest -Uri $url -Headers $headers -Method GET Write-Output $result |
...