GET api/Sector/{id}?customer={customer}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
|
| customer | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SectorModel| Name | Description | Type | Additional information |
|---|---|---|---|
| HALLEID | integer |
None. |
|
| ETAGEID | integer |
None. |
|
| ETAGEBEZEICHNUNG | string |
None. |
|
| KST | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"HALLEID": 1,
"ETAGEID": 2,
"ETAGEBEZEICHNUNG": "sample string 3",
"KST": "sample string 4"
},
{
"HALLEID": 1,
"ETAGEID": 2,
"ETAGEBEZEICHNUNG": "sample string 3",
"KST": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfSectorModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GefahrstofferfassungWappService.Models">
<SectorModel>
<ETAGEBEZEICHNUNG>sample string 3</ETAGEBEZEICHNUNG>
<ETAGEID>2</ETAGEID>
<HALLEID>1</HALLEID>
<KST>sample string 4</KST>
</SectorModel>
<SectorModel>
<ETAGEBEZEICHNUNG>sample string 3</ETAGEBEZEICHNUNG>
<ETAGEID>2</ETAGEID>
<HALLEID>1</HALLEID>
<KST>sample string 4</KST>
</SectorModel>
</ArrayOfSectorModel>