get_entity_record
Retrieve a single entity record by entity name and primary key, returning all properties and child entities. Use when you know the exact record needed.
Instructions
Retrieve a single entity record by its entity name and key (primary key). Returns the full record with all properties and child entities. Use this when you know exactly which record you need (e.g., entity 'user' with key 1).
To discover records, use fetch_query instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | The primary key of the record to retrieve | |
| entityName | Yes | The name of the entity (e.g., 'user', 'invoice', 'ui_catalog') |