Smithery

trigger_instances.manage.update

Updates the status of a trigger instance to enable or disable it. Disabling a trigger pauses event listening without deleting the trigger configuration. Re-enabling restores the trigger to its active state. Use this for temporary maintenance or to control trigger execution.

Remote smithery/composio

Other tools also called trigger_instances.manage.update? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "status": {
      "enum": [
        "enable",
        "disable"
      ],
      "type": "string",
      "description": "body parameter"
    },
    "triggerId": {
      "type": "string",
      "format": "triggerInstanceId",
      "description": "The ID of the trigger instance to update"
    }
  }
}