curl --request GET \
--url https://flowra.dev/api/v1/workflow/manager/detail/{id} \
--header 'x-api-key: <api-key>'{
"id": "<string>",
"name": "<string>",
"projectId": "<string>",
"nodes": "<array>",
"edges": "<array>",
"workflowType": "static",
"isActive": true,
"isPublic": true,
"version": "<string>",
"executionCount": 123,
"successfulExecutionCount": 123,
"failedExecutionCount": 123,
"connections": "<array>",
"tools": "<array>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"description": "<string>",
"workspaceId": "<string>",
"inputSchema": {},
"outputSchema": {},
"clonedFromWorkflowId": "<string>",
"clonedFromVersion": "<string>",
"lastExecutedAt": "<string>",
"sourceVersionLatest": "1.0.2"
}Returns full configuration of a workflow: name, tools, prompt, model, and connection settings. Use this to inspect or edit a workflow.
curl --request GET \
--url https://flowra.dev/api/v1/workflow/manager/detail/{id} \
--header 'x-api-key: <api-key>'{
"id": "<string>",
"name": "<string>",
"projectId": "<string>",
"nodes": "<array>",
"edges": "<array>",
"workflowType": "static",
"isActive": true,
"isPublic": true,
"version": "<string>",
"executionCount": 123,
"successfulExecutionCount": 123,
"failedExecutionCount": 123,
"connections": "<array>",
"tools": "<array>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"description": "<string>",
"workspaceId": "<string>",
"inputSchema": {},
"outputSchema": {},
"clonedFromWorkflowId": "<string>",
"clonedFromVersion": "<string>",
"lastExecutedAt": "<string>",
"sourceVersionLatest": "1.0.2"
}Was this page helpful?