GET api/tblAreas
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of tblArea| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| aName | string |
None. |
|
| Cost | decimal number |
None. |
|
| Note | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"aName": "sample string 2",
"Cost": 3.1,
"Note": "sample string 4"
},
{
"id": 1,
"aName": "sample string 2",
"Cost": 3.1,
"Note": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOftblArea xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Classes">
<tblArea>
<Cost>3.1</Cost>
<Note>sample string 4</Note>
<aName>sample string 2</aName>
<id>1</id>
</tblArea>
<tblArea>
<Cost>3.1</Cost>
<Note>sample string 4</Note>
<aName>sample string 2</aName>
<id>1</id>
</tblArea>
</ArrayOftblArea>