Skip to content

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"
FieldWhere usedReason
version / release_versionEvents, releases, deploys, artifacts, and testsThe shared key that ties build metadata to runtime evidence.
environmentProduction, staging, development, or another sanitized keyKeeps release quality and incidents separated by environment.
distBundled frontend builds and source mapsDistinguishes rebuilds that share a semantic version.
commit_sha and repository_urlRelease review and incident timelinesHelps responders find the exact code change linked to a failure.
bundle_url or bundle_pathSource-map and symbol metadataConnects an uploaded artifact to the asset that generated the stack trace.
sha256Artifact upload responseProvides 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.