/bff/issue/create
Creates a new issue in the default project. The AI workflow is triggered automatically to classify and process the issue.
IssuepostBffIssueCreate
Parameters
7 body
Body · 7
subjectstringRequiredIssue subject/title.
Length: 1–∞
descriptionstringIssue description (supports HTML).
internalDescriptionstringInternal notes visible only to team members.
prioritynumberPriority: 1=low, 2=normal, 3=high, 4=critical, 5=blocker.
Range: 1–5
Default:
2assigneeContactIdnumberAssignee contact ID.
reporterContactIdnumberReporter contact ID.
parentIssueKeystringParent issue key for sub-tasks (e.g. "PROJ-100").
Request
POST /bff/issue/create
curl -X POST "https://api.bizkithub.com/bff/issue/create" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"subject": "Login page returns 500 error",
"description": "example_description",
"internalDescription": "example_internalDescription",
"priority": 2,
"assigneeContactId": 10,
"reporterContactId": 5,
"parentIssueKey": "PROJ-100"
}'Response
JSON payload
{
"success": false,
"issueKey": "PROJ-124",
"internalId": 0
}All response codes
1 status code documented
Need an API key?
All BizKitHub API endpoints require authentication via API key.