Get a Targeted NF
get
/{versionId}/inventory/nfMgmt/nfs/{nfId}
Display a Network Function (NF).
Request
Path Parameters
Back to Top
Response
200 Response
400 Response
The user input is invalid.
401 Response
The session ID is invalid.
404 Response
The object (resource URI, device, and so on) of your input request cannot be found.
Examples
Examples of Accessing the API
See Authenticate for how to acquire a session cookie.
The following example shows how to get a targeted NF using curl.
curl -X GET \
-b sessionid.txt \
--header "Accept: application/xml" \
"https://example.com:8443/rest/v1.3/inventory/nfMgmt/nfs/ID5"
The following example shows how to get a targeted NF using Python.
import requests
from lxml import etree
url = "https://example.com:8443/rest/v1.3/inventory/nfMgmt/nfs/ID5"
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"?>
<nf>
<children>
<id>ID2</id>
<ipAddress>10.5.5.154</ipAddress>
<name>sd154</name>
<parentGroupFullName>Home/sd154</parentGroupFullName>
<parentGroupId>ID5</parentGroupId>
</children>
<groupType>DEVICE</groupType>
<hidden>false</hidden>
<id>ID5</id>
<name>sd154</name>
<nfCategory>
<id>ID2</id>
<name>SP Edge & Core</name>
<product>Session Delivery</product>
<vendor>Oracle</vendor>
</nfCategory>
<nfType>
<name>Device</name>
</nfType>
<parentGroupFullName>Home</parentGroupFullName>
<parentGroupId>ID1</parentGroupId>
</nf>
The following example shows the contents of the response body in JSON.
{
"children": [
{
"id": "ID5",
"ipAddress": "10.4.4.177",
"name": "sd177",
"parentGroupFullName": "Home/sd177",
"parentGroupId": "ID13"
}
],
"groupType": "DEVICE",
"hidden": "false",
"id": "ID13",
"name": "sd177",
"nfCategory": {
"id": "ID5",
"name": "SP Edge & Core",
"product": "Session Delivery",
"vendor": "Oracle"
},
"nfType": {
"name": "Device"
},
"parentGroupFullName": "Home",
"parentGroupId": "ID1"
}