# Send email via Gmail
curl -X POST https://api.runtools.ai/v1/tools/gmail/execute \
-H "X-API-Key: rt_live_xxx" \
-H "Content-Type: application/json" \
-d '{
"action": "send_email",
"params": {
"to": "[email protected]",
"subject": "Hello",
"body": "This is a test email"
}
}'
# Post to Slack
curl -X POST https://api.runtools.ai/v1/tools/slack/execute \
-H "X-API-Key: rt_live_xxx" \
-H "Content-Type: application/json" \
-d '{
"action": "post_message",
"params": {
"channel": "#general",
"text": "Hello from RunTools!"
}
}'