Execute a tool against its configured third-party API using the supplied variable values. The tool’s stored auth credentials are resolved and injected automatically. Use this endpoint to test a tool after creation or to invoke it directly.
Documentation Index
Fetch the complete documentation index at: https://docs.sigmamind.ai/llms.txt
Use this file to discover all available pages before exploring further.
API Key is required in header. You can find it in the settings
Unique identifier for the integration
Unique identifier for the tool to execute
Request body to execute a tool against its configured third-party API. Supply values for every {{variable}} placeholder declared in the tool's endpoint, queryParams, and bodyParams. The tool's stored auth credentials are resolved automatically — you do not need to pass credentials here.
A map of placeholder names to values used to resolve {{placeholder}} tokens in the tool's endpoint URL, query parameters, and request body at runtime. Each placeholder used in the request must have a corresponding entry in this map. Example: for endpoint '/customers/{{customerId}}.json', provide {"customerId": "7654321"}.
{ "customerId": "7654321" }
The authId of the credential set to use for this execution.
64"auth-P3kNz7Yv1Qm9"
OK
Result of executing a tool against its configured third-party API.
Unique identifier of the tool that was executed.
"tool-X9pLm2Wq8Rt3"
Unique identifier of the integration this tool belongs to.
"intg-AuUKK371Spr5"
The fully resolved URL that was called, with all {{variable}} placeholders substituted.
"https://my-store.myshopify.com/admin/api/2024-01/customers/7654321.json"
The HTTP method used for the request.
"GET"
HTTP status code returned by the third-party API.
200
Whether the third-party API returned a 2xx success response.
true
A set of dynamic key-value pairs required by the selected Agent. These variables allow personalization of the call, such as passing the customer’s name or other contextual details.
{ "customer_name": "Michael" }
Response headers returned by the third-party API.
{
"Content-Type": "application/json; charset=utf-8"
}
Error message when success is false — contains the raw error body or exception message.
"404 Not Found: {\"errors\": \"Customer not found\"}"
How long the third-party API took to respond, in milliseconds.
342
Timestamp when the execution was triggered.
"2024-04-20T10:00:00.000Z"