Shuffle Workflow Execution
A workflow execution instance in the Shuffle SOAR platform representing a single run of a workflow.
SecurityWorkflowsAutomationSOAROrchestrationOpen-Source
Properties
| Name |
Type |
Description |
| execution_id |
string |
Unique execution identifier (UUID) |
| workflow_id |
string |
ID of the workflow that was executed |
| status |
string |
Current status of the execution |
| started_at |
integer |
Execution start timestamp in Unix milliseconds |
| completed_at |
integer |
Execution completion timestamp in Unix milliseconds |
| execution_argument |
string |
Input data passed to the workflow at execution start |
| authorization |
string |
Authorization token for polling execution status |
| result |
string |
Final output from the last workflow action |
| results |
array |
Results from each action in the workflow |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://shuffler.io/schemas/execution",
"title": "Shuffle Workflow Execution",
"description": "A workflow execution instance in the Shuffle SOAR platform representing a single run of a workflow.",
"type": "object",
"properties": {
"execution_id": {
"type": "string",
"description": "Unique execution identifier (UUID)"
},
"workflow_id": {
"type": "string",
"description": "ID of the workflow that was executed"
},
"status": {
"type": "string",
"enum": ["EXECUTING", "FINISHED", "ABORTED", "FAILED"],
"description": "Current status of the execution"
},
"started_at": {
"type": "integer",
"description": "Execution start timestamp in Unix milliseconds"
},
"completed_at": {
"type": "integer",
"description": "Execution completion timestamp in Unix milliseconds"
},
"execution_argument": {
"type": "string",
"description": "Input data passed to the workflow at execution start"
},
"authorization": {
"type": "string",
"description": "Authorization token for polling execution status"
},
"result": {
"type": "string",
"description": "Final output from the last workflow action"
},
"results": {
"type": "array",
"items": {
"$ref": "#/$defs/ActionResult"
},
"description": "Results from each action in the workflow"
}
},
"required": ["execution_id", "workflow_id", "status"],
"$defs": {
"ActionResult": {
"type": "object",
"description": "Result from an individual action in the workflow execution",
"properties": {
"action": {
"type": "object",
"description": "The action that produced this result"
},
"result": {
"type": "string",
"description": "Output from this action"
},
"status": {
"type": "string",
"enum": ["SUCCESS", "FAILURE", "SKIPPED"]
},
"started_at": {
"type": "integer"
},
"completed_at": {
"type": "integer"
}
}
}
}
}
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.
apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
resolveTurn a domain, URL or GitHub org into the provider it belongs to.
find_cohortsEvery scored population of providers in the catalog.
All 92 tools
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/shuffle-execution"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no email required.
A second provider on the same verified email joins the account you already have.