Smithery

trigger_instances.active.list

Retrieves all active trigger instances for your project. Triggers listen for events from connected accounts (e.g., new emails, Slack messages, GitHub commits) and can invoke webhooks or workflows. Use filters to find triggers for specific users, connected accounts, or trigger types.

Remote smithery/composio

Other tools also called trigger_instances.active.list? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "limit": {
      "type": "number",
      "nullable": true,
      "description": "Number of items per page, max allowed is 1000"
    },
    "cursor": {
      "type": "string",
      "description": "Cursor for pagination. The cursor is a base64 encoded string of the page and limit. The page is the page number and the limit is the number of items per page. The cursor is used to paginate through the items. The cursor is not required for the first page."
    },
    "user_ids": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "nullable": true,
      "description": "Array of user IDs to filter triggers by"
    },
    "triggerIds": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "triggerInstanceId"
      },
      "nullable": true,
      "description": "DEPRECATED: This parameter will be removed in a future version. Please use trigger_ids instead."
    },
    "trigger_ids": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "triggerInstanceId"
      },
      "nullable": true,
      "description": "Array of trigger IDs to filter triggers by"
    },
    "showDisabled": {
      "type": "boolean",
      "default": false,
      "nullable": true,
      "description": "DEPRECATED: This parameter will be removed in a future version. Please use show_disabled instead."
    },
    "triggerNames": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "nullable": true,
      "description": "DEPRECATED: This parameter will be removed in a future version. Please use trigger_names instead."
    },
    "authConfigIds": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "authConfigId"
      },
      "nullable": true,
      "description": "DEPRECATED: This parameter will be removed in a future version. Please use auth_config_ids instead."
    },
    "show_disabled": {
      "type": "boolean",
      "default": false,
      "nullable": true,
      "description": "When set to true, includes disabled triggers in the response."
    },
    "trigger_names": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "nullable": true,
      "description": "Array of trigger names to filter triggers by. Case-insensitive (internally normalized to uppercase)."
    },
    "auth_config_ids": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "authConfigId"
      },
      "nullable": true,
      "description": "Array of auth config IDs to filter triggers by"
    },
    "connectedAccountIds": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "connectedAccountId"
      },
      "nullable": true,
      "description": "DEPRECATED: This parameter will be removed in a future version. Please use connected_account_ids instead."
    },
    "connected_account_ids": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "connectedAccountId"
      },
      "nullable": true,
      "description": "Array of connected account IDs to filter triggers by"
    },
    "deprecatedAuthConfigUuids": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "nullable": true,
      "description": "DEPRECATED: This parameter will be removed in a future version. Please use auth_config_ids instead."
    },
    "deprecatedConnectedAccountUuids": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "nullable": true,
      "description": "DEPRECATED: This parameter will be removed in a future version. Please use connected_account_ids instead."
    }
  }
}