Skip to content

Run Trigger

POST
/api/automations/triggers/{trigger_id}/run
curl --request POST \
--url http://localhost:8000/api/automations/triggers/example/run \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "dry_run": false, "row_ids": [ "example" ] }'
trigger_id
required
Trigger Id
string
x-workspace-id
Any of:
string
Media typeapplication/json
RunRequest
object
dry_run
Dry Run
boolean
row_ids
Any of:
Array<string>

Successful Response

Media typeapplication/json
Examplegenerated
example

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
ctx
Context
object
input
Input
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{
"detail": [
{
"ctx": {},
"input": "example",
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}