Skip to main content

Retrieve JSON workflow

GET 

/workflow

This endpoint allows you to retrieve workflow definition file (JSON format).

Responses

The response is an Ikomia workflow JSON file.

{
"api": {
"version": "0.10.0"
},
"connections": [
{
"source_id": -1,
"source_index": 0,
"target_id": 0,
"target_index": 0
},
...
],
"metadata": {
"description": "Smart Object Detection workflow",
"keywords": "",
"name": "Smart Object Detection",
"tag": "20231005-171546"
},
"tasks": [
{
"task_data": {
"language": 1,
"name": "infer_yolo_v7",
"parameters": [
{
"name": "cuda",
"value": "True"
},
...
],
"url": "file://Ikomia/Plugins/Python/infer_yolo_v7"
},
"task_id": 0
},
...
]
}
Loading...