Unkey · Schema

InternalServerErrorResponse

Error response when an unexpected error occurs on the server. This indicates a problem with Unkey's systems rather than your request. When you encounter this error: - The request ID in the response can help Unkey support investigate the issue - The error is likely temporary and retrying may succeed - If the error persists, contact Unkey support with the request ID

API KeysRate LimitingAuthenticationDeveloper PlatformAccess ControlIdentityAnalytics

Properties

Name Type Description
meta object
error object
View JSON Schema on GitHub

JSON Schema

unkey-internalservererrorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InternalServerErrorResponse",
  "title": "InternalServerErrorResponse",
  "type": "object",
  "required": [
    "meta",
    "error"
  ],
  "properties": {
    "meta": {
      "$ref": "#/components/schemas/Meta"
    },
    "error": {
      "$ref": "#/components/schemas/BaseError"
    }
  },
  "description": "Error response when an unexpected error occurs on the server. This indicates a problem with Unkey's systems rather than your request.\n\nWhen you encounter this error:\n- The request ID in the response can help Unkey support investigate the issue\n- The error is likely temporary and retrying may succeed\n- If the error persists, contact Unkey support with the request ID"
}