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

/bff/issue/bulk-velocity

Sets velocity (clamped 0..100) on every issue whose issue_key is in the list. Also stamps the [AI velocity] marker into internal_description so a subsequent runIssueAIWorkflow re-run refuses to overwrite these operator-set values.

IssuepostBffIssueBulk-velocity

Parameters

JSON body

Request body

application/json
issueKeysstring[]Required

Issue keys to update.

velocitynumberRequired

Effort/complexity score (0..100). Anchors: 1 trivial, 25 default ~20 min, 50 ~4 h, 75 ~2 days, 90+ split, 100 unsolvable/unclear.

Range: 0100

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-velocity

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

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key