Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 432 Bytes

rfc7807.md

File metadata and controls

22 lines (15 loc) · 432 Bytes

RFC 7807 Problem Details in HTTP API

Back{: .button}

First Read

Found this in my GitHub feed

A response of type application/problem+json would contain the status code and the title of the error, if needed detail

// application/problem+json
// Problem.valueOf(Status.NOT_FOUND);
{
  "title": "Not Found",
  "status": 404
}

Reference