Skip to main content

Recherche Entite

Retrieves an ontology entity by its unique identifier. Returns the complete entity with all its properties.

Parameters

ParameterTypeRequiredVariableDescription
entityIddynamic valueYesYesID of the entity to look up.
entityIdsdynamic valueNoYesList of IDs for batch lookup (alternative to entityId).
includePropertiesbooleanNoNoInclude entity properties in the response. (Default: true)
includeRelationshipsbooleanNoNoInclude relationships to other entities in the response. (Default: false)
outputVariabletextNoNoOutput variable name containing the entity data.

Parameters marked Variable = Yes accept the {{blockName.field}} syntax.

Output

Output variable : entity

{
"id": "...",
"type": "...",
"properties": {}
}

Example

Retrieve a lead by its ID.

Input :

{"entityId": "c9cbffbf-1234-5678-abcd-ef0123456789"}

Output :

{"id": "c9cbffbf-...", "type": "Lead", "properties": {"name": "Acme Corp", "status": "active"}}
Tip

{{entity.properties}} contains all entity properties. Use {{entity.type}} to verify the retrieved type.