api/v1/cpe/categories/{category}/items
Method: GET https://developers.mobilemanager.co.uk/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": "673a5a41-de6c-436e-be5d-1cb6e022b24c",
"Name": "sample string 2"
},
{
"Id": "673a5a41-de6c-436e-be5d-1cb6e022b24c",
"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>673a5a41-de6c-436e-be5d-1cb6e022b24c</Id>
<Name>sample string 2</Name>
</CPEModel>
<CPEModel>
<Id>673a5a41-de6c-436e-be5d-1cb6e022b24c</Id>
<Name>sample string 2</Name>
</CPEModel>
</ArrayOfCPEModel>