Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

However, it is still possible to get a 404 response even if your resource has been defined. This can happen if the URI includes query params that are not defined as a part of the resource.:

GET https://www.examples.org/parts?color=red

Code Block
languagejs
{
    "type": "about:blank",
    "title": "Not Found",
    "status": 404,
    "detail": "color is not valid for this web API endpoint.",
    "instance": "http://www.examples.org/api/parts?color=red"
}

Here are a few reasons and symptoms.

...