Nodes REST Endpoints

Nodes
Create a Node
Method: post
Path: /nodes
Create a Route
Method: post
Path: /nodes/{srcNodeId}/route
Delete a Node
Method: delete
Path: /nodes/{id}
Delete Route Between Two Nodes
Method: delete
Path: /nodes/{srcNodeId}/route/{destNodeId}
Get a Node
Method: get
Path: /nodes/{id}
Get Routing Fields of a Rulefile
Method: get
Path: /nodes/routeAttributes
Get the Routing Algorithms of a Node
Method: get
Path: /nodes/{nodeId}/routingFunctions
Get the Routing Object Between Two Nodes
Method: get
Path: /nodes/{srcNodeId}/route/{destNodeId}
Get the Routing Objects from Source Node
Method: get
Path: /nodes/{srcNodeId}/route
List All Nodes
Method: get
Path: /nodes
Update a Node
Method: patch
Path: /nodes/{id}
Update the Route Attributes Between Two Nodes
Method: patch
Path: /nodes/{srcNodeId}/route/{destNodeId}
Update the Route Between Two Nodes
Method: put
Path: /nodes/{srcNodeId}/route/{destNodeId}