GET api/Site/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Site| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | string |
None. |
|
| Districtid | integer |
None. |
|
| Description | string |
None. |
|
| Breducedprice | decimal number |
None. |
|
| Bfullprice | decimal number |
None. |
|
| Lreducedprice | decimal number |
None. |
|
| Lfullprice | decimal number |
None. |
|
| Alternateprovisiontypeid | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "sample string 1",
"Districtid": 2,
"Description": "sample string 3",
"Breducedprice": 1.1,
"Bfullprice": 4.1,
"Lreducedprice": 5.1,
"Lfullprice": 6.1,
"Alternateprovisiontypeid": 1
}
application/xml, text/xml
Sample:
<Site xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LAP.BaseObject"> <Alternateprovisiontypeid>1</Alternateprovisiontypeid> <Bfullprice>4.1</Bfullprice> <Breducedprice>1.1</Breducedprice> <Description>sample string 3</Description> <Districtid>2</Districtid> <Id>sample string 1</Id> <Lfullprice>6.1</Lfullprice> <Lreducedprice>5.1</Lreducedprice> </Site>