api/v1/cpe/categories/{category}/items
Method: GET https://simportal-api-staging.azurewebsites.net/api/v1/cpe/categories/{category}/items
Summary
Get a list of CPE items
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
category |
A category of CPE which is the router |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of CPEModelName | Description | Type | Additional information |
---|---|---|---|
Id | globally unique identifier |
None. |
|
Name | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Id": "fd1fc17a-6d81-4f32-a122-ad93b1620ff3", "Name": "sample string 2" }, { "Id": "fd1fc17a-6d81-4f32-a122-ad93b1620ff3", "Name": "sample string 2" } ]
application/xml, text/xml
Sample:
<ArrayOfCPEModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SimPortalApi.Controllers"> <CPEModel> <Id>fd1fc17a-6d81-4f32-a122-ad93b1620ff3</Id> <Name>sample string 2</Name> </CPEModel> <CPEModel> <Id>fd1fc17a-6d81-4f32-a122-ad93b1620ff3</Id> <Name>sample string 2</Name> </CPEModel> </ArrayOfCPEModel>