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/sync/{workflowId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"resource_id": "res_abc123"
}
'{}Executes a workflow that contains a sync_request_trigger and immediately returns the result. The workflow must be designed for synchronous execution, meaning it cannot contain long-running tasks like delays or iterators. The final node must be a text_transform node configured as the response.
curl --request POST \
--url https://v1.api.altostrat.io/workflows/sync/{workflowId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"resource_id": "res_abc123"
}
'{}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.
The prefixed ID of the workflow (e.g., fl_...).
The JSON payload for the synchronous request. This will be available to the workflow under payload.
The body is of type object.
The workflow executed successfully and returned a response. The schema of the response is determined by the final node in the workflow.
The response is of type object.
Was this page helpful?