PowerShell - Cross-Platform PowerShell
Given this code snippet:
What will be the output if the API returns
$response = Invoke-RestMethod -Uri 'https://api.example.com/data' -Method POST -Body @{id=5; name='Alice'} -ContentType 'application/json'
$response.statusWhat will be the output if the API returns
{"status":"success"}?