Crear múltiples conexiones en lote
🚀 Servidor de producción
https://api.hiveflow.com/api
🚀 Servidor de producción
https://api.hiveflow.com/api
POST
/flows/{flowId}/edges/batch
Conexiones
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.hiveflow.com/api/flows//edges/batch' \
--header 'Content-Type: application/json' \
--data-raw '{
"edges": [
{
"source": "string",
"target": "string",
"sourceHandle": "string",
"targetHandle": "string",
"type": "string",
"data": {}
}
],
"validateCycles": true,
"skipDuplicates": true
}'
Response Response Example
{
"success": true,
"edges": [
{
"id": "string",
"source": "string",
"target": "string",
"sourceHandle": "string",
"targetHandle": "string",
"type": "string",
"data": {
"isConditional": true,
"conditionIndex": 0
}
}
],
"statistics": {
"created": 0,
"skipped": 0,
"failed": 0
},
"errors": [
{
"index": 0,
"error": "string"
}
]
}
Request
Path Params
flowId
string
required
Body Params application/json
Responses
Modified at 2025-06-19 15:26:15