Get Route Entry by ID

get

/{versionId}/routeSets/{routeSetId}/entries/{entryId}

Display route sets entry details based on a specified ID that exists on the SDM server. User has to provide the route set ID and route entry ID as part of URI to get the specified route entry details.

Request

Path Parameters
Back to Top

Response

200 Response

400 Response

The user input is invalid.

401 Response

The session ID is invalid.

403 Response

There is no permission to access the resources.

404 Response

The object (resource URI, device, and so on) of your input request cannot be found.

500 Response

Internal server error
Back to Top

Examples

Examples of Accessing the API

See Authenticate for how to acquire a session cookie.

The following example shows how to get route entry by ID using curl.

curl -X GET \
    -b sessionid.txt \
    --header "Accept: application/xml" \
    "https://example.com:8443/rest/v1.3/routeSets/{routeSetId}/entries/{entryId}"

The following example shows how to get route entry by ID using Python.

import requests
from lxml import etree
url = "https://example.com:8443/rest/v1.3/routeSets/{routeSetId}/entries/{entryId}"
headers = { "Accept":"application/xml", "Cookie":cookie }
resp = requests.get(url, headers=headers)

Example of the Response Body

The following example shows the contents of the response body in XML.

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<routeSetEntry>
  <carrierIdCode>22</carrierIdCode>
  <description>LastnonEmptyDescEntered</description>
  <destinationGroup>xxx</destinationGroup>
  <format></format>
  <nextHop>xxx</nextHop>
  <npa></npa>
  <nxx></nxx>
  <objectId>ID1</objectId>
  <priority></priority>
  <pubId>12345689</pubId>
  <pubIdFormula></pubIdFormula>
  <routingNum>33</routingNum>
  <sed>ThirdaddtestentryRestAPIEnonmpty</sed>
  <sedFormula></sedFormula>
  <trunkContext>xxx</trunkContext>
  <trunkGroup>xxx</trunkGroup>
  <user1>u1</user1>
  <user2>xxx</user2>
  <user3>xxx</user3>
  <user4>xxx</user4>
  <user5>xxx</user5>
  <weight></weight>
  <pUser1>admin</pUser1>
  <pUser2>admin1</pUser2>
</routeSetEntry>

The following example shows the contents of the response body in JSON.

{
  "carrierIdCode": "22",
  "description": "LastnonEmptyDescEntered",
  "destinationGroup": "xxx",
  "format": "",
  "nextHop": "xxx",
  "npa": "",
  "nxx": "",
  "objectId": "ID1",
  "pUser1": "admin",
  "pUser2": "admin1",
  "priority": "",
  "pubId": "1234568",
  "pubIdFormula": "",
  "routingNum": "33",
  "sed": "ThirdaddtestentryRestAPIEnonmpty",
  "sedFormula": "",
  "trunkContext": "xxx",
  "trunkGroup": "xxx",
  "user1": "u1",
  "user2": "xxx",
  "user3": "xxx",
  "user4": "xxx",
  "user5": "xxx",
  "weight": ""
}

Example for Range Type RouteSet

This example shows the response available in NNC 9.0.2 and later.

An example XML response:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<routeSetEntry>
    <carrierIdCode>22</carrierIdCode>
    <description>LastnonEmptyDescEntered</description>
    <destinationGroup>xxx</destinationGroup>
    <format></format>
    <nextHop>xxx</nextHop>
    <objectId>ID3</objectId>
    <priority></priority>
    <rangeEnd>110</rangeEnd>
    <rangeStart>100</rangeStart>
    <routingNum>33</routingNum>
    <sed>abcde</sed>
    <sedFormula></sedFormula>
    <trunkContext>xxx</trunkContext>
    <trunkGroup>xxx</trunkGroup>
    <user1>u1</user1>
    <user2>xxx</user2>
    <user3>xxx</user3>
    <user4>xxx</user4>
    <user5>xxx</user5>
    <weight></weight>
</routeSetEntry>

An example JSON response:

{
    "carrierIdCode": "",
    "description": "",
    "destinationGroup": "",
    "format": "",
    "nextHop": "",
    "objectId": "ID1",
    "order": "",
    "preference": "",
    "priority": "",
    "rangeEnd": "23",
    "rangeStart": "17",
    "routingNum": "",
    "sed": "SED1",
    "sedFormula": "",
    "trunkContext": "",
    "trunkGroup": "",
    "user1": "",
    "user2": "",
    "user3": "",
    "user4": "",
    "user5": "",
    "weight": ""
}
Back to Top