Skip to main content
POST
/
connect
/
{namespace}
/
{connectionId}
/
.triggers
/
{triggerName}
Create trigger instance
curl --request POST \
  --url https://api.smithery.ai/connect/{namespace}/{connectionId}/.triggers/{triggerName} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "params": {}
}'
{
  "id": "trg_01HW1234567890",
  "name": "page.updated",
  "connection_id": "notion",
  "params": {},
  "created_at": "2026-04-22T12:00:00.000Z"
}

Documentation Index

Fetch the complete documentation index at: https://smithery.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Smithery API key as Bearer token

Path Parameters

namespace
string
required
connectionId
string
required
triggerName
string
required

Body

application/json
params
object
required

Trigger-specific parameters defined by the trigger inputSchema

Response

Trigger instance created

id
string
required

Stable trigger instance id generated by Smithery

Example:

"trg_01HW1234567890"

name
string
required

Trigger name

Example:

"page.updated"

connection_id
string
required

Connection id the trigger belongs to

Example:

"notion"

params
object
required

Trigger instance parameters

created_at
string
required

ISO 8601 timestamp

Example:

"2026-04-22T12:00:00.000Z"