get_object_fields
Retrieve field names, labels, and types for a specific Salesforce object using this tool. Simplifies data understanding and integration by providing essential object metadata.
Instructions
Retrieves field Names, labels and types for a specific Salesforce object
Input Schema
Name | Required | Description | Default |
---|---|---|---|
object_name | Yes | The name of the Salesforce object (e.g., 'Account', 'Contact') |
Input Schema (JSON Schema)
{
"properties": {
"object_name": {
"description": "The name of the Salesforce object (e.g., 'Account', 'Contact')",
"type": "string"
}
},
"required": [
"object_name"
],
"type": "object"
}