Get Routing Fields of a Rule File

get

/v1/nodes/routeAttributes

Returns the routing algorithm for a node by node ID.

Request

Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

The routing fields of the rule file have been returned successfully.
Body ()
Root Schema : RouteAttributesResponse
Type: object
Response schema to get the output fields for a node
Show Source
Nested Schema : fields
Type: array
The output fields for a node defined in NPL.
Show Source
Nested Schema : RoutingAttributesModel
Type: object
Schema defining an output field's details for a route
Show Source

400 Response

The server cannot process the request due to a client error.
Body ()
Root Schema : Error
Type: object
Used when an API encounters an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx).
Show Source

401 Response

The client does not have the correct privileges.
Body ()
Root Schema : Error
Type: object
Used when an API encounters an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx).
Show Source

403 Response

The request was not authorized.
Body ()
Root Schema : Error
Type: object
Used when an API encounters an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx).
Show Source

404 Response

The requested resource cannot be found.
Body ()
Root Schema : Error
Type: object
Used when an API encounters an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx).
Show Source

405 Response

This method is not allowed.
Body ()
Root Schema : Error
Type: object
Used when an API encounters an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx).
Show Source

409 Response

The request cannot be processed due to the conflict with the existing state of the resource.
Body ()
Root Schema : Error
Type: object
Used when an API encounters an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx).
Show Source

500 Response

The system has encountered an internal server error.
Body ()
Root Schema : Error
Type: object
Used when an API encounters an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx).
Show Source
Back to Top

Examples

The following example shows how to get the route attributes for a specified node by submitting a GET request on the REST resource using cURL. For more information about cURL, see Use cURL.

curl -X GET 'http://hostname:port/nodes/routeAttributes?nodeId=31eoef-otm-lna53s09'

Example of the Response Body

If successful, the response code 200 is returned along with the following response body.

{
  "fields": [
    {
      "id": "calling_number",
      "type": 0
    },
    {
      "id": "seq_no",
      "type": 1
    }
  ],
  "nodeId": "31eoef-otm-lna53s09"
}
Back to Top