BizKitHub
DocsAPI ReferenceIssue/bff/issue/bulk-spam
postIssueAdmin BFF

/bff/issue/bulk-spam

Sets is_spam on every issue whose issue_key is in the list. When marking (isSpam=true) each ticket is additionally transitioned to the org-default done status (unless it is already in the done category — a specific done-row picked by an operator is preserved). Does NOT re-trigger any outbound notification — the reporter must never learn we flagged the message as spam; the new-issue e-mail already fired at creation time and a bulk triage decision stays silent.

IssuepostBffIssueBulk-spam

Parameters

JSON body

Request body

application/json
issueKeysstring[]Required

Issue keys to update.

isSpambooleanRequired

True = mark as spam, false = clear the spam flag.

Response schema

1 status code documented

200Success
success"true"Required
matchednumberRequired
requestednumberRequired

Response example

application/json
{
  "success": true,
  "matched": 0,
  "requested": 0
}

Request example

POST /bff/issue/bulk-spam

post
curl -X POST "https://api.bizkithub.com/bff/issue/bulk-spam" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "issueKeys": [
    "PROJ-123"
  ],
  "isSpam": false
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key