curl --request POST \
--url https://api.xpander.ai/v1/toolkits/{toolkit_id}/tools/{tool_id} \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"parameters": {
"query_params": {},
"path_params": {},
"body_params": {
"subject": "Weekly Report",
"body_html": "<h1>Report</h1><p>Summary</p>",
"to": [
"user@example.com"
]
}
}
}
'