SignEnvoy docs

Error reference / http-error

HTTP error

A generic HTTP failure that is not one of the specific problem types.

Problem type /problems/http-error
HTTP status Passes through the status of the underlying HTTP error
Emitted by Dashboard (JSON requests), REST API (/v1)
Trigger
REST API (/v1): generic HTTP exception passthrough

What happened

A framework-level HTTP error occurred (for example a method that the path does not support, or a route that does not exist under /v1). The status is whatever that underlying error carried; the title repeats its message.

What it means

The request never reached a SignEnvoy handler. Most often the path or method is wrong.

What to do next

Compare the path and method against the OpenAPI document at /v1/openapi.json. Paths are case-sensitive and carry no trailing slash.

Problem body

Every error is an RFC 9457 problem document with media type application/problem+json. The type member is the stable identifier to switch on; docs_url is this page.

{
  "type": "/problems/http-error",
  "title": "HTTP error",
  "status": 500,
  "instance": "/v1/...",
  "docs_url": "https://docs.signenvoy.com/errors/http-error"
}