Parameters
JSON body
Request body
application/jsonissueKeysstring[]RequiredIssue keys to update.
assigneeContactIdnumberRequiredNew primary assignee contact id. Pass 0 to unassign.
Example
10Sets primary_assignee_id on every issue whose issue_key is in the list. Pass assigneeContactId: 0 to unassign in bulk. The contact id itself is not validated here — the caller resolves it through /bff/person/search which is already scoped to the caller organisation, and a foreign id would fail the underlying FK anyway.
JSON body
issueKeysstring[]RequiredIssue keys to update.
assigneeContactIdnumberRequiredNew primary assignee contact id. Pass 0 to unassign.
101 status code documented
success"true"RequiredmatchednumberRequiredrequestednumberRequired{
"success": true,
"matched": 0,
"requested": 0
}POST /bff/issue/bulk-assignee
curl -X POST "https://api.bizkithub.com/bff/issue/bulk-assignee" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"issueKeys": [
"PROJ-123"
],
"assigneeContactId": 10
}'All BizKitHub public API endpoints require authentication via API key.