Skip to main content
GET
/
grc
/
entities
/
{entity_id}
Get GRC entity by ID
curl --request GET \
  --url https://api.leen.dev/v1/grc/entities/{entity_id} \
  --header 'X-API-KEY: <api-key>' \
  --header 'X-CONNECTION-ID: <api-key>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "description": "<string>",
  "type": "<string>",
  "vendor_attributes": {
    "id": "<string>",
    "vendor": "<string>",
    "data": {}
  },
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

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

Path Parameters

entity_id
string<uuid>
required

Query Parameters

use_pool
boolean
default:true

Response

Successful Response

Response model for returning GRC entity details via an API endpoint.

id
string<uuid>
required

Leen's UUID for the GRC entity

name
string
required

Entity name

type
string
required

Type or classification of the GRC entity

vendor_attributes
object
required

Vendor-specific attributes and identifiers

description
string | null

Detailed description of the entity

created_at
string<date-time> | null

Timestamp when the entity was created

updated_at
string<date-time> | null

Timestamp when the entity was last updated

I