GET api/GetSubTheme/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
Body Parameters
None.
Response Information
Resource Description
SubTheme| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | string |
Required Matching regular expression pattern: ^[0-9a-zA-Z-]*$ String length: inclusive between 3 and 3 |
|
| CodeTheme | string |
None. |
|
| LabelShort | string |
Required String length: inclusive between 0 and 30 |
|
| LabelLong | string |
Required String length: inclusive between 0 and 128 |
|
| Order | integer |
Required Range: inclusive between 1 and 2147483647 |
Response Formats
application/json, text/json
Sample:
{
"Code": "sample string 1",
"CodeTheme": "sample string 2",
"LabelShort": "sample string 3",
"LabelLong": "sample string 4",
"Order": 1
}
application/xml, text/xml
Sample:
<SubTheme xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Common.Models"> <Code>sample string 1</Code> <CodeTheme>sample string 2</CodeTheme> <LabelLong>sample string 4</LabelLong> <LabelShort>sample string 3</LabelShort> <Order>1</Order> </SubTheme>