Parameters
JSON body
Request body
application/jsonissueKeystringRequiredIssue key.
Example
PROJ-123blobTokenstringRequiredToken of the blob (file) to attach — returned by POST /bff/blob/upload.
Links a previously-uploaded blob to an existing issue via pm__issue_attachment. Idempotent — a repeated call for the same (blob, issue) pair short-circuits with linked: false instead of erroring. Called by the admin sidebar uploader after POST /bff/blob/upload returns a token.
JSON body
issueKeystringRequiredIssue key.
PROJ-123blobTokenstringRequiredToken of the blob (file) to attach — returned by POST /bff/blob/upload.
1 status code documented
successbooleanRequiredlinkedbooleanRequiredTrue when the row was inserted; false when the blob was already linked.
{
"success": false,
"linked": false
}POST /bff/issue/link-blob
curl -X POST "https://api.bizkithub.com/bff/issue/link-blob" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"issueKey": "PROJ-123",
"blobToken": "example_blobToken"
}'All BizKitHub public API endpoints require authentication via API key.