GET api/Groups/{groupId}/Equipments
Get all equipments in the system
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| groupId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Equipment| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1
},
{
"Id": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfEquipment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DomainLayer.Models">
<Equipment>
<Id>1</Id>
</Equipment>
<Equipment>
<Id>1</Id>
</Equipment>
</ArrayOfEquipment>