Skip to content

resource_not_found โ€‹

resource_not_found

Description โ€‹

The requested resource could not be found.

HTTP Status โ€‹

404 Not Found

doc_url Format โ€‹

The doc_url value is an absolute URL and changes by environment:

<docs-base-url>/errors/resource_not_found

Typical Causes โ€‹

  • The requested identifier does not exist.
  • The resource was deleted or is no longer available.
  • The request points to the wrong tenant, context, or environment.

Example โ€‹

Request:

http
GET /v1/premium-scheduling/recurring-premium-requests/00000000-0000-4000-8000-000000000000

Response:

json
{
  "errors": [
    {
      "code": "resource_not_found",
      "message": "Recurring premium request ... was not found",
      "doc_url": "https://docs.example.com/errors/resource_not_found"
    }
  ]
}

How To Fix โ€‹

  1. Verify the resource ID and request path.
  2. Ensure the resource exists in the target environment.
  3. Retry the request with a valid existing identifier.