Modify Route Entry by ID
/{versionId}/routeSets/{routeSetId}/entries/{entryId}
Request
-
entryId(required):
The id of the route which needs modification.
-
routeSetId(required):
The route set whose route entry needs modification.
-
versionId(required):
The rest api version, it's value is v1.3.
Response
200 Response
400 Response
401 Response
403 Response
404 Response
500 Response
Examples
Examples of Accessing the API
See Authenticate for how to acquire a session cookie.
The following example shows how to modify route entry by ID using curl.
curl -X PUT \
-b sessionid.txt \
-d@request.xml \
--header "Accept: application/xml" \
--header "Content-Type: application/xml" \
"https://example.com:8443/rest/v1.3/routeSets/{routeSetId}/entries/{entryId}"
The following example shows how to modify 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", "Content-Type: application/xml", "Cookie":cookie }
data = etree.tostring(etree.parse("request.json"))
resp = requests.put(url, headers=headers, data=data)
Example of the Request Body
The following example shows the contents of the request body in XML.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<routeSetEntry>
<carrierIdCode></carrierIdCode>
<description>IamDescTypesednew</description>
<destinationGroup>DestGr1</destinationGroup>
<nextHop>Boston</nextHop>
<npa>1</npa>
<nxx>9</nxx>
<objectId>ID2</objectId>
<order>10</order>
<preference></preference>
<pubId>1207203</pubId>
<pubIdFormula></pubIdFormula>
<routingNum></routingNum>
<sed>iamsed3</sed>
<sedFormula></sedFormula>
<trunkContext></trunkContext>
<trunkGroup></trunkGroup>
<user1></user1>
<user2></user2>
<user3></user3>
<user4></user4>
<user5></user5>
<pUser1></pUser1>
<pUser2></pUser2>
</routeSetEntry>
The following example shows the contents of the request body in JSON.
{
"carrierIdCode": [],
"description": "IamDescTypesednew",
"destinationGroup": "DestGr1",
"nextHop": "Boston",
"npa": "1",
"nxx": "9",
"objectId": "ID1",
"order": "10",
"preference": [],
"pubId": "1207203",
"pubIdFormula": [],
"routingNum": [],
"sed": "iamsed3",
"sedFormula": [],
"trunkContext": [],
"trunkGroup": [],
"user1": [],
"user2": [],
"user3": [],
"user4": [],
"user5": [],
"pUser1": [],
"pUser2": []
}
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></carrierIdCode>
<description>IamDescTypesednew</description>
<destinationGroup>DestGr1</destinationGroup>
<format></format>
<nextHop>Boston</nextHop>
<npa>1</npa>
<nxx>9</nxx>
<objectId>ID1</objectId>
<order>10</order>
<preference></preference>
<priority></priority>
<pubId>1207203</pubId>
<pubIdFormula></pubIdFormula>
<routingNum></routingNum>
<sed>iamsed3</sed>
<sedFormula></sedFormula>
<trunkContext></trunkContext>
<trunkGroup></trunkGroup>
<user1></user1>
<user2></user2>
<user3></user3>
<user4></user4>
<user5></user5>
<weight></weight>
<pUser1></pUser1>
<pUser2></pUser2>
</routeSetEntry>
The following example shows the contents of the response body in JSON.
{
"carrierIdCode": "22",
"description": "IamDescTypesednew",
"destinationGroup": "DestGr1",
"format": "",
"nextHop": "Boston",
"npa": "1",
"nxx": "9",
"objectId": "ID1",
"order": "10",
"pUser1": "admin",
"pUser2": "admin1",
"priority": "",
"pubId": "1207203",
"pubIdFormula": "",
"routingNum": "33",
"sed": "iamsed3",
"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 request body:
<?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>115</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 request body:
{
"description": "I am the new description",
"destinationGroup": "DestGr1",
"nextHop": "Boston",
"objectId": "ID1",
"order": "10",
"rangeStart": "123589",
"rangeEnd": "231777",
"sed": "iamsed2"
}
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>115</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": "I am the new description",
"destinationGroup": "DestGr1",
"format": "",
"nextHop": "Boston",
"objectId": "ID1",
"order": "10",
"preference": "",
"priority": "",
"rangeEnd": "231777",
"rangeStart": "123589",
"routingNum": "",
"sed": "iamsed2",
"sedFormula": "",
"trunkContext": "",
"trunkGroup": "",
"user1": "",
"user2": "",
"user3": "",
"user4": "",
"user5": "",
"weight": ""
}