ActionTriggerRequest
Request body for POST /actions/{id}/trigger.
Triggers a registered action directly for a given entity, bypassing the full pipeline. Used for:
- Verifying action config before go-live
- Staging environment testing
- Manual trigger for debugging
dry_run=True simulates the trigger without making any HTTP calls or external side effects. The response has status='would_trigger'.
version is required — actions are always addressed by explicit (id, version). There is no 'latest' resolution.
versionVersion (string)required
entityEntity (string)required
timestamp object
anyOf
- string
- null
string
dry_runDry Run (boolean)
Default value:
falseActionTriggerRequest
{
"version": "string",
"entity": "string",
"timestamp": "string",
"dry_run": false
}