Composio · Schema
TriggerResponse
AI AgentsAuthenticationIntegrationsMCPOAuthSandboxToolsTriggersUnified_APIWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the trigger. |
| connectedAccountId | string | The connected account this trigger is associated with. |
| triggerName | string | Name of the trigger event. |
| webhookUrl | string | The webhook URL for receiving events. |
| status | string | |
| createdAt | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TriggerResponse",
"title": "TriggerResponse",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the trigger."
},
"connectedAccountId": {
"type": "string",
"description": "The connected account this trigger is associated with."
},
"triggerName": {
"type": "string",
"description": "Name of the trigger event."
},
"webhookUrl": {
"type": "string",
"format": "uri",
"description": "The webhook URL for receiving events."
},
"status": {
"type": "string",
"enum": [
"active",
"paused",
"disabled"
]
},
"createdAt": {
"type": "string",
"format": "date-time"
}
}
}