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.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[].createdAt | string | No | ISO 8601 timestamp. |
| remediations | object[] | Yes | — |
| remediations[].id | string | No | Unique identifier. |
| remediations[].findingId | string | No | — |
| remediations[].runId | string | No | — |
| remediations[].status | proposed | validating | waiting_approval | approved | published | rejected | failed | cancelled | No | Current lifecycle status. |
| remediations[].patchDigest | string | No | — |
| remediations[].validation | object | No | — |
| remediations[].approvedByUserId | string | No | — |
| remediations[].approvedAt | string | No | — |
| remediations[].branchName | string | No | — |
| remediations[].pullRequestId | string | No | — |
| remediations[].pullRequestUrl | string | No | — |
| remediations[].createdAt | string | No | ISO 8601 timestamp. |
| remediations[].updatedAt | string | No | ISO 8601 timestamp. |
404Resource not foundapplication/json
| Field | Type | Required | Description |
|---|---|---|---|
| error | string | No | — |
Get finding evidence and remediation history
Loading...
Response 200
Loading...