Resource Not Found
The requested resource does not exist or is not visible to the caller.
At a glance
| Field | Value |
|---|---|
| HTTP status | 404 |
| Error code | RESOURCE_NOT_FOUND |
| Type URL | https://developer.fieldnation.com/error-codes/resource-not-found |
| Content-Type | application/problem+json |
| Retryable | false |
| Agent action | FIX_INPUT |
What it means
The requested resource does not exist or is not visible to the caller.
When it is returned
- The identifier in the URL refers to a deleted or never-existing resource.
- The caller cannot see the resource due to scoping rules.
- The request hit the wrong environment (sandbox vs production).
Troubleshooting
- Re-verify the resource ID against the source of truth.
- Confirm you are calling the correct environment (
api.fieldnation.comvsapi-sandbox.fndev.net). - List the parent collection to see which IDs are visible to your user.
Example response
HTTP/1.1 404 Resource Not Found
Content-Type: application/problem+json{
"type": "https://developer.fieldnation.com/error-codes/resource-not-found",
"title": "Resource Not Found",
"status": 404,
"detail": "Work order 12412546 was not found.",
"code": "RESOURCE_NOT_FOUND",
"retryable": false,
"correlationId": "01J9X7Q3F6E2K8B1Z5C4M0V2HA",
"agent": {
"action": "FIX_INPUT"
},
"errors": []
}Related
Last updated on
Insufficient Permissions
The caller is authenticated but not authorized for the requested resource or action — whether by role/scope, ownership, or a system-level rule.
Resource Conflict
The request conflicts with the current state of the resource — either a uniqueness violation, an illegal state transition, or a concurrent edit.