meta { name: Delete Board type: http seq: 15 } delete { url: {{appview_url}}/api/admin/boards/:id } params:path { id: {{board_id}} } assert { res.status: eq 200 res.body.success: isTrue } docs { Delete a forum board. Pre-flight check refuses with 409 if any posts reference this board. If clear, calls deleteRecord on the Forum DID's PDS. The firehose indexer removes the DB row asynchronously. **Requires:** space.atbb.permission.manageCategories Path params: - id: Board database ID (bigint as string) Returns (200): { "success": true } Error codes: - 400: Invalid ID format - 401: Not authenticated - 403: Missing manageCategories permission - 404: Board not found - 409: Board has posts — remove them first - 500: ForumAgent not configured - 503: PDS network error }