POST api/Values/PropertyFacingGetData
Request Information
URI Parameters
None.
Body Parameters
View_Facing_Master_Property| Name | Description | Type | Additional information |
|---|---|---|---|
| view_facing_id | integer |
None. |
|
| view_name | string |
None. |
|
| active | integer |
None. |
|
| sequence | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"view_facing_id": 1,
"view_name": "sample string 2",
"active": 3,
"sequence": 4
}
application/xml, text/xml
Sample:
<View_Facing_Master_Property xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BLL.PropertyClasses.Master"> <active>3</active> <sequence>4</sequence> <view_facing_id>1</view_facing_id> <view_name>sample string 2</view_name> </View_Facing_Master_Property>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Property_Facing_Response| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| msg | string |
None. |
|
| data | Collection of View_Facing_Master_Property |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"msg": "sample string 2",
"data": [
{
"view_facing_id": 1,
"view_name": "sample string 2",
"active": 3,
"sequence": 4
},
{
"view_facing_id": 1,
"view_name": "sample string 2",
"active": 3,
"sequence": 4
}
]
}
application/xml, text/xml
Sample:
<Property_Facing_Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BLL.FunctionClasses.Response">
<data xmlns:d2p1="http://schemas.datacontract.org/2004/07/BLL.PropertyClasses.Master">
<d2p1:View_Facing_Master_Property>
<d2p1:active>3</d2p1:active>
<d2p1:sequence>4</d2p1:sequence>
<d2p1:view_facing_id>1</d2p1:view_facing_id>
<d2p1:view_name>sample string 2</d2p1:view_name>
</d2p1:View_Facing_Master_Property>
<d2p1:View_Facing_Master_Property>
<d2p1:active>3</d2p1:active>
<d2p1:sequence>4</d2p1:sequence>
<d2p1:view_facing_id>1</d2p1:view_facing_id>
<d2p1:view_name>sample string 2</d2p1:view_name>
</d2p1:View_Facing_Master_Property>
</data>
<msg>sample string 2</msg>
<success>true</success>
</Property_Facing_Response>