Parameters
JSON body
Request body
application/jsonissueKeystringRequiredIssue key that owns the comment.
PROJ-123commentIdstringRequiredFull wire-format comment id from IssueCommentItem.id — ${issueKey}_c${dbId}.
PROJ-123_c456Takes an existing internal comment (channel = internal) and re-classifies it as an outbound customer reply (channel = email_out), then dispatches the same e-mail add-email would have sent (reporter + assignee, subject-threaded, org sender identity). The comment id is preserved so the timeline entry stays the same row instead of appearing as a duplicate. Fails when the comment is not internal, is spam-flagged, or does not belong to the given issue.
JSON body
issueKeystringRequiredIssue key that owns the comment.
PROJ-123commentIdstringRequiredFull wire-format comment id from IssueCommentItem.id — ${issueKey}_c${dbId}.
PROJ-123_c4561 status code documented
successbooleanRequiredWhether the comment was promoted successfully.
commentIdstringRequiredComment ID (unchanged from input).
PROJ-123_c456{
"success": false,
"commentId": "PROJ-123_c456"
}POST /bff/issue/promote-comment-to-email
curl -X POST "https://api.bizkithub.com/bff/issue/promote-comment-to-email" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"issueKey": "PROJ-123",
"commentId": "PROJ-123_c456"
}'All BizKitHub public API endpoints require authentication via API key.