Executes a single node in-memory to test its logic and output. This is a critical endpoint for building and debugging workflows.
cURL
curl --request POST \ --url https://v1.api.altostrat.io/workflows/test-node \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "node": { "id": "node_1", "type": "action", "data": { "componentId": "webhook" } }, "context": {}, "authorization_id": "<string>" }'
{ "status": "success", "output": {} }
Enter the JWT token.
Node executed successfully.
The response is of type object.
object
Was this page helpful?