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

/bff/issue/bulk-assignee

Sets 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.

IssuepostBffIssueBulk-assignee

Parameters

JSON body

Request body

application/json
issueKeysstring[]Required

Issue keys to update.

assigneeContactIdnumberRequired

New primary assignee contact id. Pass 0 to unassign.

Example10

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

post
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
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key