POST api/tblAreas
Request Information
URI Parameters
None.
Body Parameters
tblArea| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| aName | string |
None. |
|
| Cost | decimal number |
None. |
|
| Note | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"aName": "sample string 2",
"Cost": 3.1,
"Note": "sample string 4"
}
application/xml, text/xml
Sample:
<tblArea xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Classes"> <Cost>3.1</Cost> <Note>sample string 4</Note> <aName>sample string 2</aName> <id>1</id> </tblArea>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
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"
}
application/xml, text/xml
Sample:
<tblArea xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Classes"> <Cost>3.1</Cost> <Note>sample string 4</Note> <aName>sample string 2</aName> <id>1</id> </tblArea>