I am starting to work on ASP.NET core error handling, and I noticed that I am getting an error in a format
{
"errors": {},
"type": "https://tools.ietf.org/html/rfc7231#section-6.5.1",
"title": "One or more validation errors occurred.",
"status": 400,
"traceId": "|caeb2316-47fb93bd8a17bc0a."
}
I am trying to get a more detailed error message, but I cannot get rid of this message.
I just followed instruction on Handle errors in ASP.NET Core, but error is always there.
How can I get rid of this format of error message?
errorsproperty should contain all the individual errors.