Skip to main content
GET
/
tprm
/
findings
/
{finding_id}
Get TPRM Finding by ID
curl --request GET \
  --url https://api.leen.dev/v1/tprm/findings/{finding_id} \
  --header 'X-API-KEY: <api-key>' \
  --header 'X-CONNECTION-ID: <api-key>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "description": "<string>",
  "type": "<string>",
  "severity": "CRITICAL",
  "status": "OPEN",
  "domain": "<string>",
  "asset_type": "<string>",
  "asset_id": "<string>",
  "first_seen": "2023-11-07T05:31:56Z",
  "last_seen": "2023-11-07T05:31:56Z",
  "connection_attributes": {
    "ports": [
      123
    ],
    "geo_ip_location": "<string>",
    "country": "<string>",
    "observed_ips": [
      "<string>"
    ]
  },
  "evidence": {},
  "remediation": "<string>",
  "provider_name": "<string>",
  "company": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "domain": "<string>",
    "score": {
      "rating": 123,
      "grade": "<string>",
      "factors": []
    },
    "industry": "<string>",
    "size": "<string>",
    "date_added": "2023-11-07T05:31:56Z",
    "compliance_claimed": [
      {
        "standard": "<string>",
        "last_updated_at": "2023-11-07T05:31:56Z"
      }
    ],
    "vendor_attributes": {
      "id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "data": {
        "type": "<string>",
        "dashboard_link": "<string>",
        "strategy_report_url": "<string>"
      }
    },
    "related_portfolios": [
      {
        "id": "<string>",
        "name": "<string>"
      }
    ],
    "updated_at": "2023-11-07T05:31:56Z",
    "created_at": "2023-11-07T05:31:56Z"
  },
  "vendor_attributes": {
    "id": "<string>",
    "type": "<string>",
    "status": "<string>",
    "severity": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "data": {
      "finding_data": {
        "control_id": "<string>",
        "output": "<string>",
        "title": "<string>",
        "detail": "<string>"
      }
    }
  },
  "ticket": {
    "ticket_id": "<string>",
    "status": "<string>",
    "owner": "<string>"
  },
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "status_updated_at": "2023-11-07T05:31:56Z",
  "title": "<string>"
}

Authorizations

X-CONNECTION-ID
string
header
required
X-API-KEY
string
header
required

Path Parameters

finding_id
string<uuid>
required

Response

Successful Response

id
string<uuid>
required

Leen's UUID for the finding

description
string | null
required

The description of the finding

type
string
required

The type of the finding

severity
enum<string> | null
required

The severity of the finding

Available options:
CRITICAL,
HIGH,
MEDIUM,
LOW,
INFO,
UNKNOWN
status
enum<string> | null
required

The status of the finding

Available options:
OPEN,
IGNORED,
DELETED,
CLOSED,
UNKNOWN
domain
string | null
required

The domain of the finding

asset_type
string
required

The asset type of the finding

asset_id
string | null
required

The asset ID of the finding

first_seen
string<date-time> | null
required

The first seen time of the finding

last_seen
string<date-time> | null
required

The last seen time of the finding

connection_attributes
ConnectionAttributesModel · object
required

The connection attributes of the finding

evidence
Evidence · object
required

The evidence of the finding

remediation
string | null
required

The remediation of the finding

provider_name
string | null
required

The provider name of the finding

company
TPRM Company · object
required

The ID of the company associated with the finding

vendor_attributes
TPRMFindingKnowledgeBaseVendorData · object
required

The vendor data of the finding

ticket
FindingTicketModel · object
required

The ticket of the finding

created_at
string<date-time> | null
required

The creation time of the finding

updated_at
string<date-time> | null
required

The update time of the finding

status_updated_at
string<date-time> | null
required

The status update time of the finding

title
string | null

The title or name of the finding