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:
networkClassOfServices (array) – a list of network classes of service objects as defined as System network class of service in list attributes.
- Status Codes:
200 OK – no error
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:
description (string) – See description from System network class of service attributes.
communicationBarringProfiles (array) – See communicationBarringProfiles from System network class of service attributes.
networkTranslationIndex (string) – See networkTranslationIndex from System network class of service attributes.
callProcessingPolicyProfileName (string) – See callProcessingPolicyProfileName from System network class of service attributes.
- Status Codes:
200 OK – no error
404 Not Found – ncos instance not found on system