GET api/Groups/{groupId}/Spreaders
Get all Spreader for a group
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| groupId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
A List of Spreader
Collection of Spreader| Name | Description | Type | Additional information |
|---|---|---|---|
| LastId | integer |
None. |
|
| ManufID | string |
None. |
|
| EquipId | string |
None. |
|
| Id | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"LastId": 1,
"ManufID": "sample string 2",
"EquipId": "sample string 3",
"Id": 4
},
{
"LastId": 1,
"ManufID": "sample string 2",
"EquipId": "sample string 3",
"Id": 4
}
]
application/xml, text/xml
Sample:
<ArrayOfSpreader xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DomainLayer.Models">
<Spreader>
<Id>4</Id>
<EquipId>sample string 3</EquipId>
<LastId>1</LastId>
<ManufID>sample string 2</ManufID>
</Spreader>
<Spreader>
<Id>4</Id>
<EquipId>sample string 3</EquipId>
<LastId>1</LastId>
<ManufID>sample string 2</ManufID>
</Spreader>
</ArrayOfSpreader>