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 CPEModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Name | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "3bc069d0-d2c3-4ff2-962c-e2c7ba7414db",
"Name": "sample string 2"
},
{
"Id": "3bc069d0-d2c3-4ff2-962c-e2c7ba7414db",
"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>3bc069d0-d2c3-4ff2-962c-e2c7ba7414db</Id>
<Name>sample string 2</Name>
</CPEModel>
<CPEModel>
<Id>3bc069d0-d2c3-4ff2-962c-e2c7ba7414db</Id>
<Name>sample string 2</Name>
</CPEModel>
</ArrayOfCPEModel>