Internal Server Error
An unexpected error occurred on Field Nation's servers.
At a glance
| Field | Value |
|---|---|
| HTTP status | 500 |
| Error code | INTERNAL_SERVER_ERROR |
| Type URL | https://developer.fieldnation.com/error-codes/internal-server-error |
| Content-Type | application/problem+json |
| Retryable | true |
| Agent action | RETRY |
| Agent backoff | 1000 ms |
| Agent max attempts | 4 |
What it means
An unexpected error occurred on Field Nation's servers.
When it is returned
- An unhandled exception was raised while processing the request.
- A downstream service (database, search index, queue) was unreachable.
- A bug surfaced an unexpected code path.
Troubleshooting
- Retry idempotent requests with exponential backoff (1s, 2s, 4s, 8s).
- Check status.fieldnation.com for ongoing incidents.
- If the problem persists, capture the
detailvalue and the response timestamp, then contact support.
Example response
HTTP/1.1 500 Internal Server Error
Content-Type: application/problem+json{
"type": "https://developer.fieldnation.com/error-codes/internal-server-error",
"title": "Internal Server Error",
"status": 500,
"detail": "An unexpected error occurred while loading the work classifications catalog.",
"code": "INTERNAL_SERVER_ERROR",
"retryable": true,
"correlationId": "01J9X7Q3F6E2K8B1Z5C4M0V2HA",
"agent": {
"action": "RETRY",
"backoffMs": 1000,
"maxAttempts": 4
},
"errors": []
}Related
Last updated on