Procesar/ejecutar un nodo individual
🚀 Servidor de producción
https://api.hiveflow.com/api
🚀 Servidor de producción
https://api.hiveflow.com/api
POST
/flows/{flowId}/nodes/{nodeId}/process
Procesamiento
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.hiveflow.com/api/flows//nodes//process' \
--header 'Content-Type: application/json' \
--data-raw '{
"inputs": {
"previousNode": {
"result": "Resultado del nodo anterior"
},
"userInput": "Texto a procesar"
},
"async": false,
"saveToHistory": true,
"overrideConfig": {
"temperature": 0,
"maxTokens": 0,
"model": "string"
}
}'
Response Response Example
{
"success": true,
"nodeId": "string",
"result": {
"output": "string",
"metadata": {},
"conditionalResults": [
{
"condition": "string",
"result": true,
"targetNodeId": "string"
}
],
"usage": {
"total_tokens": 0,
"cost": 0
}
},
"executionTime": 0,
"timestamp": "2019-08-24T14:15:22Z",
"processId": "string"
}
Request
Path Params
flowId
string
required
nodeId
string
required
Body Params application/json
Responses
Modified at 2025-06-19 15:26:15