Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


NameParentTypeExampleOptional/CompulsoryNotes
1Authorization: BearerheaderString
Required

required for tracking/ (future) authentication and to identify the source of the request

2payloadTypebodyString CM_WriteRequiredCould be in URL, See alt. b above
'CM_Write' currently, the only support value
3

decisionType

bodyStringAllowRequiredCould be in URL, See alt. b above
'Allow' currently, the only supported value
4

payload

bodyObject Array
RequiredNo needed if payload and decision are in URL
5

cmHandleId

payloadStringF811AF64F5146DFC545EC60B73DE948EOptionalCan be sent while cmHandle is used instead of alternateId
NCMP will populate when available
6

resourceIdentifer

payloadStringericsson-enm-gnbdu:GNBDUFunctionManagedElement=Kista/GNBDUFunction=1/UECC=1OptionalRemainder of FDN
NCMP will populate when available
7

targetFdn

payloadStringMEContext=RadioNode-0001,ManagedElement=RadioNode-0001,GNBDUFunction=1,....,EUTranCell=123/Subnetwork=22/MeContext=Kista/ManagedElement=Kista/GNBDUFunction=1/UECC=1RequiredComplete FDN representing the cm handle and the resource identifier ie point to the target of the change to 'CM-Handle' ?!
8

cmChangeRequest

payloadObject
RequiredCM Change Request

...

Code Block
languagexml
titleSample Body
linenumberstrue
collapsetrue
{
  "payloadType": "CM_Write",
  "decisionType": "Allow",
  "payload": [
    {
      "cmHandleId": "F811AF64F5146DFC545EC60B73DE948E",
      "resourceIdentifier": "some-resource-idGNBDUFunction=1/UECC=1",
      "targetFdn": "MEContext=RadioNode-K6_0001,ManagedElement=RadioNode-K6_0001/Subnetwork=22/MeContext=Kista/ManagedElement=Kista/GNBDUFunction=1/UECC=1",
      "cmChangeRequest": {
        "Cell": [
          {
            "id": "Cell-id",
            "attributes": {
              "administrativeState": "UNLOCKED"
            }
          }
        ]
      }
    }
  ]
}

...