Fetch entity by id
Retrieve an entity's details by providing its unique ID. This operation allows for the precise access of information related to a specific entity within the dataset.
Path parameters
-
id
integer Required identifier for the entity to fetch the details for.
GET
/cs-close-api/entities/{id}
curl \
--request GET 'http://close-service:8082/cs-close-api/entities/{id}'
Response examples (200)
{
"id": 42,
"entityDefinitionId": 42,
"snapshotId": 42,
"parentId": 42,
"name": "string",
"description": "string",
"number": "string",
"periodId": 42,
"childCount": 42,
"hasChildren": true
}