GET api/ShortDescriptions?dept_code={dept_code}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| dept_code | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ShortDescriptions| Name | Description | Type | Additional information |
|---|---|---|---|
| Row_ID | integer |
None. |
|
| DEPT_CD | integer |
None. |
|
| DEPT_NM | string |
None. |
|
| SHORT_DESC_CD | integer |
None. |
|
| SHORT_DESC | string |
None. |
|
| Sort_Order | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Row_ID": 1,
"DEPT_CD": 2,
"DEPT_NM": "sample string 3",
"SHORT_DESC_CD": 4,
"SHORT_DESC": "sample string 5",
"Sort_Order": 6
},
{
"Row_ID": 1,
"DEPT_CD": 2,
"DEPT_NM": "sample string 3",
"SHORT_DESC_CD": 4,
"SHORT_DESC": "sample string 5",
"Sort_Order": 6
}
]
application/xml, text/xml
Sample:
<ArrayOfShortDescriptions xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/School.Models">
<ShortDescriptions>
<DEPT_CD>2</DEPT_CD>
<DEPT_NM>sample string 3</DEPT_NM>
<Row_ID>1</Row_ID>
<SHORT_DESC>sample string 5</SHORT_DESC>
<SHORT_DESC_CD>4</SHORT_DESC_CD>
<Sort_Order>6</Sort_Order>
</ShortDescriptions>
<ShortDescriptions>
<DEPT_CD>2</DEPT_CD>
<DEPT_NM>sample string 3</DEPT_NM>
<Row_ID>1</Row_ID>
<SHORT_DESC>sample string 5</SHORT_DESC>
<SHORT_DESC_CD>4</SHORT_DESC_CD>
<Sort_Order>6</Sort_Order>
</ShortDescriptions>
</ArrayOfShortDescriptions>