Pipedream · Schema
RunActionOpts
Request options for running an action
ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The action component ID |
| version | string | Optional action component version (in SemVer format, for example '1.0.0'), defaults to latest |
| external_user_id | string | The external user ID |
| configured_props | object | |
| dynamic_props_id | string | The ID for dynamic props |
| stash_id | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RunActionOpts",
"title": "RunActionOpts",
"type": "object",
"description": "Request options for running an action",
"required": [
"id",
"external_user_id"
],
"properties": {
"id": {
"type": "string",
"description": "The action component ID"
},
"version": {
"type": "string",
"description": "Optional action component version (in SemVer format, for example '1.0.0'), defaults to latest",
"example": "1.2.3",
"nullable": true
},
"external_user_id": {
"type": "string",
"description": "The external user ID"
},
"configured_props": {
"$ref": "#/components/schemas/ConfiguredProps"
},
"dynamic_props_id": {
"type": "string",
"description": "The ID for dynamic props"
},
"stash_id": {
"$ref": "#/components/schemas/RunActionOptsStashId"
}
}
}