Server SDK surface
Node SDK surface
ErrorNotifier accepts server-side HTTPS ingestion from Node today. Runtime-specific package wrappers and raw HTTPS clients use the same stable event, release, deploy, artifact, and CI API contract.
Runtime statusAPI Surface Available
Node can send events directly over HTTPS with a project key. Backend-only release, deploy, artifact, and CI routes require a server secret.Credential modelEnvironment Key
Use ERRORNOTIFIER_PROJECT_KEY for error events or ERRORNOTIFIER_SERVER_KEY for protected backend automation.Rate behaviorHTTP 429
Project keys enforce per-minute limits; retry with backoff when a rate limit response is returned.Payload safetyScrubbed
Ingestion applies payload caps and common token, password, authorization, card-like value, and email-address scrubbing.Minimal event example
const payload = {
platform: "node",
severity: "error",
message: "API route failed",
release: process.env.APP_RELEASE || "",
environment: process.env.APP_ENV || "production",
tags: { service: "api" }
};
const response = await fetch("https://errornotifier.com/wp-json/errornotifier/v1/store", {
method: "POST",
headers: {
"Authorization": `Bearer ${process.env.ERRORNOTIFIER_SERVER_KEY}`,
"Content-Type": "application/json"
},
body: JSON.stringify(payload)
});
if (!response.ok) {
throw new Error(`ErrorNotifier ingestion failed: ${response.status}`);
}| Endpoint | Credential | Use |
|---|---|---|
| /wp-json/errornotifier/v1/store | Server secret or public project key | JSON error event ingestion. |
| /wp-json/errornotifier/v1/envelope | Server secret or public project key | Sentry-like envelope ingestion for compatible emitters. |
| /wp-json/errornotifier/v1/releases | Server secret | Release version, commit, repository, dist, and environment metadata. |
| /wp-json/errornotifier/v1/deploys | Server secret | Deploy actor, release, environment, timestamp, and deploy metadata. |
| /wp-json/errornotifier/v1/artifacts/source-maps | Server secret | Source-map file or protected metadata upload. |
| /wp-json/errornotifier/v1/test-runs | Server secret | CI and automated test-run history with failure details. |
Public demo
Review the real product screens with read-only mock data
Open the demo workspace to inspect monitors, incidents, domains, alert channels, status pages, projects, issues, automated test runs, releases, artifacts, audit history, and umbrella reports without creating an account.