Move an NF to Another Device Group Parent

put

/{versionId}/inventory/nfMgmt/nfs/{nfId}

Move a Network Function (NF) to another group. You cannot move the NF if it is locked unless you are the owner of the lock or an administrator overrides the lock. An error message appears in both situations.

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.
Back to Top

Examples

Examples of Accessing the API

See Authenticate for how to acquire a session cookie.

The following example shows how to move an NF to another device group parent 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/inventory/nfMgmt/nfs/{nfId}"

The following example shows how to move an NF to another device group parent using Python.

import requests
from lxml import etree
url = "https://example.com:8443/rest/v1.3/inventory/nfMgmt/nfs/{nfId}"
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"?>
<nfConfig>
  <parentGroupFullName>RestAPITesting1</parentGroupFullName>
</nfConfig>

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

{
  "parentGroupFullName": "testGrp_REST_updated"
}

Example of the Response Body

This endpoint does not return a response body.

Back to Top