POST api/Values/PropertyTypeGetData

Request Information

URI Parameters

None.

Body Parameters

Property_Type_Master_Property
NameDescriptionTypeAdditional information
property_type_id

integer

None.

property_type_name

string

None.

active

integer

None.

sequence

integer

None.

remarks

string

None.

Request Formats

application/json, text/json

Sample:
{
  "property_type_id": 1,
  "property_type_name": "sample string 2",
  "active": 3,
  "sequence": 4,
  "remarks": "sample string 5"
}

application/xml, text/xml

Sample:
<Property_Type_Master_Property xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BLL.PropertyClasses.Master">
  <active>3</active>
  <property_type_id>1</property_type_id>
  <property_type_name>sample string 2</property_type_name>
  <remarks>sample string 5</remarks>
  <sequence>4</sequence>
</Property_Type_Master_Property>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

PropertyType_Master_Response
NameDescriptionTypeAdditional information
success

boolean

None.

msg

string

None.

data

Collection of Property_Type_Master_Property

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "msg": "sample string 2",
  "data": [
    {
      "property_type_id": 1,
      "property_type_name": "sample string 2",
      "active": 3,
      "sequence": 4,
      "remarks": "sample string 5"
    },
    {
      "property_type_id": 1,
      "property_type_name": "sample string 2",
      "active": 3,
      "sequence": 4,
      "remarks": "sample string 5"
    }
  ]
}

application/xml, text/xml

Sample:
<PropertyType_Master_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:Property_Type_Master_Property>
      <d2p1:active>3</d2p1:active>
      <d2p1:property_type_id>1</d2p1:property_type_id>
      <d2p1:property_type_name>sample string 2</d2p1:property_type_name>
      <d2p1:remarks>sample string 5</d2p1:remarks>
      <d2p1:sequence>4</d2p1:sequence>
    </d2p1:Property_Type_Master_Property>
    <d2p1:Property_Type_Master_Property>
      <d2p1:active>3</d2p1:active>
      <d2p1:property_type_id>1</d2p1:property_type_id>
      <d2p1:property_type_name>sample string 2</d2p1:property_type_name>
      <d2p1:remarks>sample string 5</d2p1:remarks>
      <d2p1:sequence>4</d2p1:sequence>
    </d2p1:Property_Type_Master_Property>
  </data>
  <msg>sample string 2</msg>
  <success>true</success>
</PropertyType_Master_Response>