Composio · Schema

CreateTriggerRequest

AI AgentsAuthenticationIntegrationsMCPOAuthSandboxToolsTriggersUnified_APIWebhooks

Properties

Name Type Description
connectedAccountId string The connected account to create the trigger for.
triggerName string The name of the trigger event to subscribe to.
webhookUrl string The URL to receive webhook events.
config object Additional trigger configuration.
View JSON Schema on GitHub

JSON Schema

composio-createtriggerrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateTriggerRequest",
  "title": "CreateTriggerRequest",
  "type": "object",
  "required": [
    "connectedAccountId",
    "triggerName"
  ],
  "properties": {
    "connectedAccountId": {
      "type": "string",
      "description": "The connected account to create the trigger for."
    },
    "triggerName": {
      "type": "string",
      "description": "The name of the trigger event to subscribe to."
    },
    "webhookUrl": {
      "type": "string",
      "format": "uri",
      "description": "The URL to receive webhook events."
    },
    "config": {
      "type": "object",
      "description": "Additional trigger configuration.",
      "additionalProperties": true
    }
  }
}