Bug? Invoke-RestMethod returns mis-cased json values for Boolean
Perhaps a bug in Powershell using Invoke-RestMethod. When querying a particular API endpoint, the json data is expected to return a true/false value.
When querying with Powershell Invoke-RestMethod, the value comes back as "True" or "False" (Capital first letter).
When querying the same endpoint with curl, the value comes back as "true" or "false" (all lowercase).
Not a huge issue, but the is confusing when trying to use a GET to determine the proper formatting for a future POST related to the value. The API endpoint is case-sensitive and doesn't like "True" when expecting "true".
