GET api/v1/Get_subcategory?name={name}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| name | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of propertytypemaster| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| codetype | string |
None. |
|
| codevalue | string |
None. |
|
| parent | integer |
None. |
|
| icon | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"codetype": "sample string 2",
"codevalue": "sample string 3",
"parent": 4,
"icon": "sample string 5"
},
{
"id": 1,
"codetype": "sample string 2",
"codevalue": "sample string 3",
"parent": 4,
"icon": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfpropertytypemaster xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIBridge">
<propertytypemaster>
<codetype>sample string 2</codetype>
<codevalue>sample string 3</codevalue>
<icon>sample string 5</icon>
<id>1</id>
<parent>4</parent>
</propertytypemaster>
<propertytypemaster>
<codetype>sample string 2</codetype>
<codevalue>sample string 3</codevalue>
<icon>sample string 5</icon>
<id>1</id>
<parent>4</parent>
</propertytypemaster>
</ArrayOfpropertytypemaster>