Closed
Description
Instead of
{
"Error": {
"Code": "UnsupportedApiVersion",
"Message": "The HTTP resource that matches the request URI..."
}
}
return this:
{
"error": {
"code": "UnsupportedApiVersion",
"message": "The HTTP resource that matches the request URI..."
}
}
Because it's more natural for javascript clients and ASP.NET Core team also use camelCase.
Or is there any configuration?