Skip to main content
POST
/
v1
/
tools
/
{slug}
/
install
curl -X POST https://api.runtools.ai/v1/tools/gmail/install \
  -H "X-API-Key: rt_live_xxx"
{
  "data": {
    "slug": "gmail",
    "installed": true,
    "configRequired": true,
    "configUrl": "https://runtools.ai/dashboard/tools/gmail/configure"
  }
}

Path Parameters

slug
string
required
Tool slug (e.g., gmail, slack, github)

Response

slug
string
Tool slug
installed
boolean
Installation status
configRequired
boolean
Whether configuration is needed
curl -X POST https://api.runtools.ai/v1/tools/gmail/install \
  -H "X-API-Key: rt_live_xxx"
{
  "data": {
    "slug": "gmail",
    "installed": true,
    "configRequired": true,
    "configUrl": "https://runtools.ai/dashboard/tools/gmail/configure"
  }
}

Notes

  • Some tools require OAuth configuration after installation
  • Visit the configUrl to complete setup
  • Or use the SDK/API to configure programmatically