BizKitHub
DocsAPI ReferenceIssue/bff/issue/save-human-only
postIssueAdmin BFF

/bff/issue/save-human-only

Sets pm__issue.human_only. Used for tickets where the operator wants to guarantee no AI action — legal escalation, incident response, VIP customer.

IssuepostBffIssueSave-human-only

Parameters

JSON body

Request body

application/json
issueKeystringRequired

Issue key.

ExamplePROJ-123
humanOnlybooleanRequired

When true, runIssueAgent will refuse to touch this ticket on any future run — no comment, no status/priority change, no reassignment.

Response schema

1 status code documented

200Success
successbooleanRequired

Whether the flag was updated successfully.

Response example

application/json
{
  "success": false
}

Request example

POST /bff/issue/save-human-only

post
curl -X POST "https://api.bizkithub.com/bff/issue/save-human-only" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "issueKey": "PROJ-123",
  "humanOnly": false
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key