Get Record
Overview
Retrieves a single record by ID
Category: Data
Use this action to retrieve a single data record by its ID. Provide the object type, the record ID, and the fields to retrieve. Fields can include dotted paths to follow lookup relationships (for example, Account.Name).
Request
| Parameter | Type | Required | Description | Example |
|---|---|---|---|---|
objectType |
string | Yes | Any core or custom object in the data model | Jobs |
id |
string | Yes | The ID of the record to retrieve | 0014d9bb-3f2a-473d-bece-c81ccb3e2ea3 |
fields |
array of string | Yes | The fields to retrieve. Use dotted paths to follow lookup relationships. Has many relationships are not supported. Min items: 1 |
["Name","JobStatus","Contact.FullName","Contact.Account.Name"] |
Response
This action’s output is available as $getRecord in JSONata expressions. See Response format for the standard result.data / result.errors structure and error handling patterns.
| Field | Type | Description |
|---|---|---|
result.data |
object | The requested record fields with nested lookup relationships, or null if there are errors |
Example output:
{
"UID": "00140010-544c-4d88-b141-58f4eb3a1543",
"Name": "JOB-1427",
"JobStatus": "Pending Allocation",
"Contact": {
"FullName": "Jane Smith",
"Account": {
"Name": "Acme Corp"
}
}
}
Feedback
Was this page helpful?