Build context
Release and artifact API
Send release, deploy, source-map, and symbol-file metadata so browser errors, test runs, and uptime incidents can be reviewed against the build that produced them.
ReleasesAvailable
Store version, environment, dist, commit, repository, and commit range metadata.DeploysAvailable
Record the actor, release version, environment, deployed-at time, and deploy metadata.ArtifactsAvailable
Upload source maps or symbol metadata as protected artifacts tied to project and release.ProcessingFoundation
The artifact registry stores files and status; source-map parsing can be layered onto the protected metadata.Release and deploy example
curl -X POST https://errornotifier.com/wp-json/errornotifier/v1/releases \
-H "Authorization: Bearer ensk_xxx" \
-H "Content-Type: application/json" \
-d '{"version":"web-2026.06.07.1","environment":"production","commit_sha":"abc123","repository_url":"https://github.com/example/app","dist":"build-417"}'
curl -X POST https://errornotifier.com/wp-json/errornotifier/v1/deploys \
-H "Authorization: Bearer ensk_xxx" \
-H "Content-Type: application/json" \
-d '{"release_version":"web-2026.06.07.1","environment":"production","actor":"github-actions","deployed_at":"2026-06-07T18:00:00Z"}'Source-map artifact example
curl -X POST https://errornotifier.com/wp-json/errornotifier/v1/artifacts/source-maps \
-H "Authorization: Bearer ensk_xxx" \
-F "release=web-2026.06.07.1" \
-F "dist=build-417" \
-F "bundle_url=https://example.com/assets/app.js" \
-F "file=@dist/app.js.map"| Field | Where used | Reason |
|---|---|---|
| version / release_version | Events, releases, deploys, artifacts, and tests | The shared key that ties build metadata to runtime evidence. |
| environment | Production, staging, development, or another sanitized key | Keeps release quality and incidents separated by environment. |
| dist | Bundled frontend builds and source maps | Distinguishes rebuilds that share a semantic version. |
| commit_sha and repository_url | Release review and incident timelines | Helps responders find the exact code change linked to a failure. |
| bundle_url or bundle_path | Source-map and symbol metadata | Connects an uploaded artifact to the asset that generated the stack trace. |
| sha256 | Artifact upload response | Provides a stable integrity value for uploaded protected files. |
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.