Workflow Configuration History
curl --request GET \
--url https://api.quiva.ai/hub/workflows/{collection_topic}/{flow_topic}/history \
--header 'Authorization: Bearer <token>'
[
{
"nodes": [
{
"data": {
"id": "<string>",
"name": "<string>",
"description": "<string>",
"node_type": "function",
"subject": "<string>",
"payload": "<unknown>",
"response_map": "<unknown>",
"options": {
"flat_map": true,
"backoff_ms": 123,
"timeout": 123,
"attempts": 123,
"ignore_response_codes": [
123
]
},
"await": true
},
"position": {},
"style": {}
}
],
"edges": [
{
"source": "<string>",
"target": "<string>",
"id": "<string>",
"sourceHandle": "<string>",
"targetHandle": "<string>"
}
],
"static": {},
"result": "<string>",
"options": {
"run_type": "debounced",
"order_on": "<string>",
"debounce_on": "<string>",
"debounce_time": 123,
"debounce_max": 123
}
}
]