tooling_execute
Execute Tooling API requests to interact with Salesforce data, supporting GET, POST, PATCH, and DELETE operations for dynamic data management.
Instructions
Executes a Tooling API request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | The Tooling API endpoint to call (e.g., 'sobjects/ApexClass') | |
data | No | Data for POST/PATCH requests | |
method | No | The HTTP method (default: 'GET') | GET |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "The Tooling API endpoint to call (e.g., 'sobjects/ApexClass')",
"type": "string"
},
"data": {
"additionalProperties": true,
"description": "Data for POST/PATCH requests",
"properties": {},
"type": "object"
},
"method": {
"default": "GET",
"description": "The HTTP method (default: 'GET')",
"enum": [
"GET",
"POST",
"PATCH",
"DELETE"
],
"type": "string"
}
},
"required": [
"action"
],
"type": "object"
}