Network Classes Of Service

List Network Classes Of Service in the system

GET /api/v1/system/networkclassofservices/

List all the Network Classes Of Service in the System.

Example request:

GET /api/v1/system/networkclassofservices/ HTTP/1.1
Host: example.com

Example response:

HTTP/1.1 200 OK
Content-Type: "application/json"

{
   "networkClassOfServices": [
                              {
                                  "name": "0",
                                  "description": ""
                              },
                              {
                                  "name": "1",
                                  "description": ""
                              },
                            ]
}
Response JSON Object:
Status Codes:

Get informations of a single network class of service

GET /api/v1/system/networkclassofservices/(string: instance_name)/

Get informations of a single network class of service.

Example request:

GET /api/v1/system/networkclassofservices/fooNcos/ HTTP/1.1
Host: example.com

Example response:

HTTP/1.1 200 OK
Content-Type: "application/json"

{
   "description": "Test NCOS",
   "communicationBarringProfiles": [
                                    {
                                        "name": "0",
                                        "isPrimary": true,
                                        "profileId": 0
                                    },
                                    {
                                        "name": "1",
                                        "isPrimary": false,
                                        "profileId": 1
                                    }
                                  ]
}
Response JSON Object:
Status Codes: