GET api/OrgBoardPosition/{id}
Fast method to get position by id.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ApiPositionOutput| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| name | string |
None. |
|
| number | string |
None. |
|
| full_number | string |
None. |
|
| person | Object |
None. |
|
| functional | string |
None. |
|
| vfp | string |
None. |
|
| in_archive | boolean |
None. |
|
| is_main | boolean |
None. |
|
| is_holder | boolean |
None. |
|
| is_executive | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": 1,
"name": "sample string 2",
"number": "sample string 3",
"full_number": "sample string 4",
"person": {},
"functional": "sample string 6",
"vfp": "sample string 7",
"in_archive": true,
"is_main": true,
"is_holder": true,
"is_executive": true
}
application/xml, text/xml
Sample:
<ApiPositionOutput xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <id>1</id> <name>sample string 2</name> <number>sample string 3</number> <full_number>sample string 4</full_number> <person /> <functional>sample string 6</functional> <vfp>sample string 7</vfp> <in_archive>true</in_archive> <is_main>true</is_main> <is_holder>true</is_holder> <is_executive>true</is_executive> </ApiPositionOutput>