Bulk delete bug reports

DELETE https://app.speybooks.com/api/v1/admin/bug-reports/

Bulk delete bug reports. Supports two modes:

  • ids: ["bug_7k3m", "bug_8n4p"] — delete specific reports by public_id
  • all: true — delete all bug reports across the platform

At least one of ids or all must be provided.

Returns the count and IDs of deleted reports.

Body parameters

all boolean optional
Set to true to delete all bug reports. Provide either ids or all.
ids array<string> optional
Array of bug report public IDs to delete.

Response

200 Deleted count and list of removed IDs.
Show response fields
deleted integer
ids array<string>

Error codes

400 Neither ids nor all provided.