Recherche Entite
Retrieves an ontology entity by its unique identifier. Returns the complete entity with all its properties.
Parameters
| Parameter | Type | Required | Variable | Description |
|---|---|---|---|---|
entityId | dynamic value | Yes | Yes | ID of the entity to look up. |
entityIds | dynamic value | No | Yes | List of IDs for batch lookup (alternative to entityId). |
includeProperties | boolean | No | No | Include entity properties in the response. (Default: true) |
includeRelationships | boolean | No | No | Include relationships to other entities in the response. (Default: false) |
outputVariable | text | No | No | Output 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.