Skip to main content
GET
/
tprm
/
companies
/
{company_id}
Get TPRM Company by ID
curl --request GET \
  --url https://api.leen.dev/v1/tprm/companies/{company_id} \
  --header 'X-API-KEY: <api-key>' \
  --header 'X-CONNECTION-ID: <api-key>'
{
  "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": {},
  "related_portfolios": [
    {
      "id": "<string>",
      "name": "<string>"
    }
  ],
  "updated_at": "2023-11-07T05:31:56Z",
  "created_at": "2023-11-07T05:31:56Z"
}

Authorizations

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

Path Parameters

company_id
string<uuid>
required

Query Parameters

use_pool
boolean
default:true

Response

Successful Response

id
string<uuid>
required

Leen's UUID for the tprm company

name
string
required

The name of the company

domain
string | null
required

The domain of the company

score
object | null
required

The score of the company

industry
string
required

The industry of the company

size
string | null
required

The size of the company

date_added
string<date-time>
required

The date the company was added

compliance_claimed
ComplianceClaimedModel · object[] | null
required

The compliance claimed by the company

vendor_attributes
object | null
required

The vendor attributes of the company

The related portfolios of the company

updated_at
string<date-time> | null
required

The date the company was updated

created_at
string<date-time> | null
required

The date the company was created

I