Get finding evidence and remediation history
GET
/v1/security/findings/{findingId}How to call this endpoint
Every ACP API request uses bearer authentication. The examples here show the actual request path, auth header, and body shape that the platform expects.
Path, query, and header parameters
These parameters control which ACP object the endpoint acts on and how the request is processed.
Path parameters
| Name | Location | Type | Required | Description |
|---|---|---|---|---|
| findingId | path | string | Yes | Security finding ID |
Query parameters
None.
Header parameters
| Name | Location | Type | Required | Description |
|---|---|---|---|---|
| X-Computer-Agents-Organization | header | string | No | Active organization context. If omitted, the authenticated user's personal organization is used. |
Body schema
This endpoint does not require a request body.
None.
What the API returns
Each response code below includes the documented payload shape for the ACP API.
200Security finding detailapplication/json
| Field | Type | Required | Description |
|---|---|---|---|
| finding | object | Yes | — |
| finding.id | string | Yes | Unique identifier. |
| finding.repositoryId | string | Yes | — |
| finding.repositoryFullName | string | No | — |
| finding.fingerprint | string | Yes | — |
| finding.ruleId | string | No | — |
| finding.title | string | Yes | Display title. |
| finding.summary | string | Yes | — |
| finding.narrativeSummary | string | Yes | Evidence-grounded written interpretation of this finding. The canonical scanner description remains available in summary. |
| finding.severity | critical | high | medium | low | informational | Yes | — |
| finding.confidence | number | Yes | — |
| finding.exploitability | string | No | — |
| finding.cwe | string[] | No | — |
| finding.cvss | number | No | — |
| finding.status | open | accepted | risk_accepted | false_positive | fixed | Yes | Current lifecycle status. |
| finding.firstSeenRunId | string | No | — |
| finding.lastSeenRunId | string | No | — |
| finding.assignedToUserId | string | No | — |
| finding.resolutionReason | string | No | — |
| finding.resolutionExpiresAt | string | No | — |
| finding.fixedAt | string | No | — |
| finding.metadata | object | No | Free-form metadata object. |
| finding.occurrenceCount | integer | Yes | — |
| finding.createdAt | string | Yes | ISO 8601 timestamp. |
| finding.updatedAt | string | Yes | ISO 8601 timestamp. |
| occurrences | object[] | Yes | — |
| occurrences[].id | string | No | Unique identifier. |
| occurrences[].runId | string | No | — |
| occurrences[].commitSha | string | No | — |
| occurrences[].locations | object[] | No | — |
| occurrences[].evidence | object | No | — |
| occurrences[].validation | object | No | — |
| occurrences[].provenance | object | No | — |
| occurrences[].narrativeSummary | string | No | Written interpretation captured for this finding occurrence and run. |
| occurrences[].createdAt | string | No | ISO 8601 timestamp. |
| remediations | object[] | Yes | — |
| remediations[].id | string | Yes | Unique identifier. |
| remediations[].repositoryId | string | Yes | — |
| remediations[].findingId | string | No | — |
| remediations[].findingIds | string[] | Yes | — |
| remediations[].runId | string | No | — |
| remediations[].status | proposed | validating | waiting_approval | approved | published | rejected | failed | cancelled | Yes | Current lifecycle status. |
| remediations[].lifecycle | queued | generating | agent_running | pull_request_open | pull_request_closed | merged | verifying | fixed | deployed | verification_failed | failed | cancelled | Yes | — |
| remediations[].patchDigest | string | Yes | — |
| remediations[].validation | object | Yes | — |
| remediations[].approvedByUserId | string | No | — |
| remediations[].approvedAt | string | No | — |
| remediations[].branchName | string | No | — |
| remediations[].pullRequestId | string | No | — |
| remediations[].pullRequestUrl | string | No | — |
| remediations[].workerThreadId | string | No | — |
| remediations[].sourceSha | string | No | — |
| remediations[].metadata | object | Yes | Free-form metadata object. |
| remediations[].createdAt | string | Yes | ISO 8601 timestamp. |
| remediations[].updatedAt | string | Yes | ISO 8601 timestamp. |
404Resource not foundapplication/json
| Field | Type | Required | Description |
|---|---|---|---|
| error | string | No | — |
Get finding evidence and remediation history
Loading...
Response 200
Loading...