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

/bff/issue/set-spam

Manually marks or unmarks an issue as spam. When marking (isSpam=true) the ticket is additionally transitioned to the org-default done status (a specific done-status the operator may have picked, e.g. Wontfix, is preserved). Never sends any outbound mail — the reporter must never learn we flagged their message as spam; we only record it internally.

IssuepostBffIssueSet-spam

Parameters

JSON body

Request body

application/json
issueKeystringRequired

Issue key.

ExamplePROJ-123
isSpambooleanRequired

Mark as spam (true) or not spam (false).

Exampletrue

Response schema

1 status code documented

200Success
successbooleanRequired

Whether the spam status was updated successfully.

Response example

application/json
{
  "success": false
}

Request example

POST /bff/issue/set-spam

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

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key