WorkflowExecution
Workflow execution request
Properties
| Property | Type | Required | Description |
|---|---|---|---|
workflow_id | string | β Yes | Workflow to execute |
parameters | object | β No | Workflow parameters |
Example
{
"workflow_id": "example",
"parameters": {}
}Used In
Code Examples
TypeScript
interface WorkflowExecution {
workflow_id: string;
parameters?: any;
}
// Usage example
const data: WorkflowExecution = {
"workflow_id": "example",
"parameters": {}
};Python
from data_layer.schemas import WorkflowExecution
# Create instance
data = WorkflowExecution(
# Add your field values here
)cURL
curl -X POST "https://altsportsleagues-backend-2qcdjegnaa-uc.a.run.app/api/endpoint" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{ "workflow_id": "example", "parameters": {} }'Validation Rules
Required Fields: workflow_id
Additional Information
- Type: object
- Source: Generated from Pydantic models in
data_layer/schemas/ - Auto-validated: All fields are validated by FastAPI
This documentation is auto-generated from the OpenAPI specification.