---
title: "Create Issue From Hit"
method: POST
path: "/negative-news/issue"
tags: ["negative-news"]
---

# Create Issue From Hit

`POST /negative-news/issue`

Create an Issue for a hit and link it via the disposition. Idempotent
(claim-then-fill on the unique key): a retry, double-submit, or overlap with
the weekly digest returns the existing issue rather than creating a second.
Used by the feed's bulk convert; the single-hit path opens the shared
``IssueModal`` first so the user can edit before saving.

## Request body

- CreateIssueFromHitRequest
  - `vendor_id` string, uuid, required
  - `hit_key` string, required
  - `title` string, required
  - `severity` 'low' | 'medium' | 'high'
  - `description` string, nullable
  - `assignee` string, uuid, nullable
  - `due_date` string, date, nullable

## Response `201`

Successful Response

- CreateIssueFromHitResponse
  - `issue_id` string, uuid, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/kobaltlabs/apis/fastapi.md) · [All operations](https://skmtc.dev/kobaltlabs/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/kobaltlabs/fastapi/revisions/3ff4c0bd276b/schema)
