Composio · Arazzo Workflow

Composio Disable an Active Trigger

Version 1.0.0

Find a user's active trigger by name and disable it.

1 workflow 1 source API 1 provider
View Spec View on GitHub AI AgentsAuthenticationIntegrationMCPSandboxToolsTriggersUnified-APIWebhookArazzoWorkflows

Provider

composio

Workflows

disable-active-trigger
Resolve an active trigger for a user and set its status to disabled.
Lists the active triggers for a user, requires at least one to be present, captures the first trigger id, and disables it via the manage status endpoint.
2 steps inputs: apiKey, triggerName, userId outputs: status, triggerId
1
listActiveTriggers
List the active triggers for the user, optionally filtered by trigger name, to resolve a trigger id to disable.
2
disableTrigger
Disable the resolved trigger instance by setting its manage status to disabled.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Composio Disable an Active Trigger
  summary: Find a user's active trigger by name and disable it.
  description: >-
    A lifecycle management flow for turning off an event source. The workflow
    lists the active triggers for a user, branches on whether a matching trigger
    exists, and disables the resolved trigger by setting its status. Every step
    spells out its request inline so the flow can be read and executed without
    opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: triggersApi
  url: ../openapi/composio-triggers-api-openapi.yml
  type: openapi
workflows:
- workflowId: disable-active-trigger
  summary: Resolve an active trigger for a user and set its status to disabled.
  description: >-
    Lists the active triggers for a user, requires at least one to be present,
    captures the first trigger id, and disables it via the manage status
    endpoint.
  inputs:
    type: object
    required:
    - apiKey
    - userId
    properties:
      apiKey:
        type: string
        description: Composio project API key sent in the x-api-key header.
      userId:
        type: string
        description: The end-user identifier whose active triggers are listed.
      triggerName:
        type: string
        description: Optional trigger name filter to narrow the active trigger list.
  steps:
  - stepId: listActiveTriggers
    description: >-
      List the active triggers for the user, optionally filtered by trigger
      name, to resolve a trigger id to disable.
    operationId: getTriggerInstancesActive
    parameters:
    - name: x-api-key
      in: header
      value: $inputs.apiKey
    - name: user_ids
      in: query
      value: $inputs.userId
    - name: trigger_names
      in: query
      value: $inputs.triggerName
    - name: limit
      in: query
      value: 50
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      triggers: $response.body#/items
      firstTriggerId: $response.body#/items/0/id
    onSuccess:
    - name: triggerFound
      type: goto
      stepId: disableTrigger
      criteria:
      - context: $response.body
        condition: $.items.length > 0
        type: jsonpath
  - stepId: disableTrigger
    description: >-
      Disable the resolved trigger instance by setting its manage status to
      disabled.
    operationId: patchTriggerInstancesManageByTriggerId
    parameters:
    - name: x-api-key
      in: header
      value: $inputs.apiKey
    - name: triggerId
      in: path
      value: $steps.listActiveTriggers.outputs.firstTriggerId
    requestBody:
      contentType: application/json
      payload:
        status: disable
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      status: $response.body#/status
  outputs:
    triggerId: $steps.listActiveTriggers.outputs.firstTriggerId
    status: $steps.disableTrigger.outputs.status

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/composio-disable-active-trigger-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.