get_record
Fetch a specific Salesforce record by providing the object name and record ID, ensuring accurate data retrieval for targeted queries.
Instructions
Retrieves a specific record by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
object_name | Yes | The name of the Salesforce object (e.g., 'Account', 'Contact') | |
record_id | Yes | The ID of the record to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"object_name": {
"description": "The name of the Salesforce object (e.g., 'Account', 'Contact')",
"type": "string"
},
"record_id": {
"description": "The ID of the record to retrieve",
"type": "string"
}
},
"required": [
"object_name",
"record_id"
],
"type": "object"
}