POST api/department/select/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
DepartmentClass| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| DEPARTMENT | string |
None. |
|
| IS_INACTIVE | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"DEPARTMENT": "sample string 2",
"IS_INACTIVE": true
}
application/xml, text/xml
Sample:
<DepartmentClass xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VEZTA.Models"> <DEPARTMENT>sample string 2</DEPARTMENT> <ID>1</ID> <IS_INACTIVE>true</IS_INACTIVE> </DepartmentClass>