Altostrat Studio is here — the AI-native network operations IDE for engineers running production. Terminal, diagrams, runbooks, and Copilot in one workspace. Get started →
curl --request POST \
--url https://v1.api.altostrat.io/workflows/test-node \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"node": {
"id": "n1",
"type": "manual_trigger",
"position": {
"x": 150,
"y": 250
},
"data": {
"componentId": "manual_trigger"
}
},
"context": {
"n1": {
"trigger_type": "manual",
"run_id": "fl_run_example"
}
},
"authorization_id": "auth_01H..."
}
'{
"status": "success",
"output": {}
}Executes a single workflow node in isolation with a provided context. This is a powerful debugging tool to test a node’s logic without running an entire workflow.
curl --request POST \
--url https://v1.api.altostrat.io/workflows/test-node \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"node": {
"id": "n1",
"type": "manual_trigger",
"position": {
"x": 150,
"y": 250
},
"data": {
"componentId": "manual_trigger"
}
},
"context": {
"n1": {
"trigger_type": "manual",
"run_id": "fl_run_example"
}
},
"authorization_id": "auth_01H..."
}
'{
"status": "success",
"output": {}
}Documentation Index
Fetch the complete documentation index at: https://altostrat.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Standard JWT for user sessions obtained via Altostrat authentication.
Show child attributes
A mock context object, simulating the state of a workflow run before this node is executed.
{
"n1": {
"trigger_type": "manual",
"run_id": "fl_run_example"
}
}The prefixed ID of an Authorization to use if the node requires it (e.g., altostrat_api).
"auth_01H..."
Was this page helpful?