Duplicar nodo existente
🚀 Servidor de producción
https://api.hiveflow.com/api
🚀 Servidor de producción
https://api.hiveflow.com/api
POST
/flows/{flowId}/nodes/{nodeId}/duplicate
Nodos
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.hiveflow.com/api/flows//nodes//duplicate' \
--header 'Content-Type: application/json' \
--data-raw '{
"position": {
"x": 0,
"y": 0
},
"nameSuffix": " (Copia)",
"includeHistory": false
}'
Response Response Example
{
"success": true,
"node": {
"id": "string",
"type": "string",
"position": {
"x": 0,
"y": 0
},
"data": {
"agentName": "string",
"llm": "openai",
"model": "string",
"agentObjective": "string",
"url": "string",
"prompt": "string",
"nodeType": "llm",
"conditions": [
{
"prompt": "string",
"targetNodeId": "string",
"usePrompt": true
}
]
}
},
"originalNodeId": "string"
}
Request
Path Params
flowId
string
required
nodeId
string
required
Body Params application/json
Responses
Modified at 2025-06-19 15:26:15