DocsAPI ReferenceIssue/bff/issue/create
postIssueAdmin BFF

/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

7 total
Body · 7
subjectstringRequired

Issue subject/title.

Length: 1
descriptionstring

Issue description (supports HTML).

internalDescriptionstring

Internal notes visible only to team members.

prioritynumber

Priority: 1=low, 2=normal, 3=high, 4=critical, 5=blocker.

Range: 15
Default: 2
assigneeContactIdnumber

Assignee contact ID.

reporterContactIdnumber

Reporter contact ID.

parentIssueKeystring

Parent issue key for sub-tasks (e.g. "PROJ-100").

Request

POST /bff/issue/create

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

Get API Key