API Guide
/api/NetworkConfigurationService/NetworkTypes(Id)
This URI represents a specific network type within the collection.
GET method for NetworkTypes(Id)
This method returns the details of a specific network type.
Description Returns the details of a specific network type.
Privilege VIEW
HTTP response
codes
200
Example
response body
{
"@odata.context": "/api/
$metadata#NetworkConfigurationService.NetworkType/$entity",
"@odata.id": "/api/NetworkConfigurationService/NetworkTypes(1)",
"Id": 1,
"Name": "General Purpose (Bronze)",
"Description": "This is the network for general purpose traffic. QOS
Priority : Bronze.",
"VendorCode": "GeneralPurpose",
"NetworkTrafficType": "Ethernet",
"QosType": 4
}
/api/NetworkConfigurationService/QosTypes
This URI represents the types of Quality-of-Service (QoS) that the system supports.
GET method for QosTypes
This method returns the types of Quality-of-Service (QoS) that the system supports.
Description
Returns the supported QoS.
Privilege VIEW
HTTP response
codes
200
Example
response body
{
"@odata.context": "/api/
$metadata#Collection(NetworkConfigurationService.QosType)",
"@odata.count": 4,
"value": [
{
"@odata.id": "/api/NetworkConfigurationService/QosTypes(1)",
"Id": 1,
"Name": "Platinum"
},
.
.
{
"@odata.id": "/api/NetworkConfigurationService/QosTypes(4)",
"Id": 4,
"Name": "Bronze"
}
Configure 199