DocsAPI ReferenceIssue/bff/issue/update
postIssueAdmin BFF

/bff/issue/update

Updates an existing issue. Only provided fields are changed.

IssuepostBffIssueUpdate

Parameters

10 body

10 total
Body · 10
issueKeystringRequired

Issue key to update.

subjectstring

New subject.

descriptionstring

New description.

internalDescriptionstring

New internal description.

prioritynumber

New priority (1-5).

Range: 15
statusIdnumber

New status ID.

assigneeContactIdnumber

New assignee contact ID (0 to unassign).

dueDatestring

Due date (ISO timestamp).

Format: date-time
testUrlstring

Test URL.

documentationUrlstring

Documentation URL.

Request

POST /bff/issue/update

post
curl -X POST "https://api.bizkithub.com/bff/issue/update" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "issueKey": "PROJ-123",
  "subject": "Updated issue title",
  "description": "example_description",
  "internalDescription": "example_internalDescription",
  "priority": 3,
  "statusId": 2,
  "assigneeContactId": 10,
  "dueDate": "2026-06-01T00:00:00Z",
  "testUrl": "https://test.example.com/feature",
  "documentationUrl": "https://docs.example.com/guide"
}'

Response

JSON payload

{
  "success": false
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key