GET api/UnitTypes/GetAllPropertyTypes
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of PropertyType| Name | Description | Type | Additional information |
|---|---|---|---|
| PropertyTypeID | integer |
None. |
|
| PropertyTypeName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"PropertyTypeID": 1,
"PropertyTypeName": "sample string 2"
},
{
"PropertyTypeID": 1,
"PropertyTypeName": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfPropertyType xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<PropertyType>
<PropertyTypeID>1</PropertyTypeID>
<PropertyTypeName>sample string 2</PropertyTypeName>
</PropertyType>
<PropertyType>
<PropertyTypeID>1</PropertyTypeID>
<PropertyTypeName>sample string 2</PropertyTypeName>
</PropertyType>
</ArrayOfPropertyType>