🐛 Oopsie

Webhooks

Oopsie can send a webhook notification when a new bug report is received.

Configuration

Set the webhook URL in your project settings (Dashboard > Projects > Edit). The server will send a POST request to this URL for each new report.

Payload

{
  "event": "report.created",
  "project": {
    "id": "uuid",
    "name": "My App"
  },
  "report": {
    "id": "uuid",
    "message": "Button not working on mobile",
    "category": "ui",
    "severity": "high",
    "page_url": "https://example.com/checkout",
    "reporter_email": "user@example.com",
    "created_at": "2026-02-21T10:30:00+00:00"
  }
}

Behavior

  • Webhooks are fire-and-forget (no retries in V1)
  • Timeout: 5 seconds
  • Failed webhooks are silently ignored

Use cases

  • Post to Slack or Discord via incoming webhooks
  • Trigger a CI/CD pipeline
  • Create a GitHub issue automatically

© 2026 Oopsie. Built by Yoan Bernabeu

Edit on GitHub