Retrieve simulation results from flow nodes via the GraphorLM REST API
POST
https://{flow_name}.flows.graphorlm.com/nodes/results
Header | Value | Required |
---|---|---|
Authorization | Bearer YOUR_API_TOKEN | Yes |
Content-Type | application/json | Yes |
Field | Type | Required | Description |
---|---|---|---|
node_id | string | Yes | The unique identifier of the node to load data from |
page | integer | No | Page number for pagination (starts from 1) |
page_size | integer | No | Number of items per page (default: 10, max: 100) |
Field | Type | Description |
---|---|---|
success | boolean | Whether the simulation data loading operation was successful |
message | string | Human-readable message about the operation result |
items | array | Array of simulation data objects from the specified node |
total | integer | Total number of items available across all pages |
page | integer | Current page number (if pagination was used) |
page_size | integer | Number of items per page (if pagination was used) |
total_pages | integer | Total number of pages available |
items
varies based on the node type:
Status Code | Description | Common Causes |
---|---|---|
400 | Bad Request | Invalid node ID, malformed pagination parameters |
401 | Unauthorized | Invalid or missing API token |
404 | Not Found | Flow not found, node not found in the specified flow |
500 | Internal Server Error | Node data loading failed, processing error |
Node Simulation Data Loading Failed
Empty Simulation Results Returned
Authentication Issues