POST
/
tools
/
{toolId}
/
execute
curl --request POST \
  --url https://api.sol.com/v1/tools/{toolId}/execute \
  --header 'Content-Type: application/json' \
  --data '{
  "params": {
    "from_email": "noreply@sol.com",
    "to_email": "tara@sol.com"
  },
  "values": {
    "subject": "Welcome to our service!"
  }
}'
{
  "executionId": "exec-98765",
  "status": "completed"
}

Path Parameters

toolId
string
required

The ID of the tool to execute

Body

application/json
params
object

Parameters for tool execution

Example:
{
  "from_email": "noreply@sol.com",
  "to_email": "tara@sol.com"
}
values
object

Static values to override parameters

Example:
{ "subject": "Welcome to our service!" }

Response

200 - application/json
Successful tool execution
executionId
string

Unique ID of the execution

Example:

"exec-98765"

status
string

Status of the execution

Example:

"completed"