Account Integrations
List integration tools
Returns the integration's tools split into enabled and available, including whether the connected account holds the OAuth scopes each tool requires. Use the tool slug values with the update-tools endpoint. Requires a USER API key.
get/public/v1/integrations/{integrationId}/tools
Path parameters
integrationIdinteger required
Example:42
Response
Integration tools (enabled + available)
Example response
{
"enabledTools": [
{
"slug": "example",
"name": "example",
"description": "example"
}
],
"availableTools": [
{
"slug": "example",
"name": "example",
"description": "example"
}
]
}