Skip to content

Consider to return camelCase error messages #195

Closed
@hikalkan

Description

@hikalkan

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?

Metadata

Metadata

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions