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-000000000000Response:
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 โ
- Verify the resource ID and request path.
- Ensure the resource exists in the target environment.
- Retry the request with a valid existing identifier.