Fetch entity by id

GET /cs-close-api/entities/{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.

Responses

  • 200 application/json

    The dto which details the entity attributes.

    Hide response attributes Show response attributes object
    • id integer
    • entityDefinitionId integer
    • snapshotId integer
    • parentId integer
    • name string
    • description string
    • number string
    • periodId integer
    • childCount integer(int32)
    • hasChildren boolean
GET /cs-close-api/entities/{id}
curl \
 --request GET 'https://customer.trintech.com/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
}