GET api/SeatVacancy?AcadYearId={AcadYearId}&UserId={UserId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| AcadYearId | integer |
Required |
|
| UserId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SeatVacancy| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| GS | integer |
None. |
|
| GA | integer |
None. |
|
| GD | integer |
None. |
|
| GN | integer |
None. |
|
| GV | integer |
None. |
|
| CFN | string |
None. |
|
| CSN | string |
None. |
|
| ECT | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"GS": 2,
"GA": 3,
"GD": 4,
"GN": 5,
"GV": 6,
"CFN": "sample string 7",
"CSN": "sample string 8",
"ECT": 9
},
{
"id": 1,
"GS": 2,
"GA": 3,
"GD": 4,
"GN": 5,
"GV": 6,
"CFN": "sample string 7",
"CSN": "sample string 8",
"ECT": 9
}
]
application/xml, text/xml
Sample:
<ArrayOfSeatVacancy xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ImpresAPI.Controllers">
<SeatVacancy>
<CFN>sample string 7</CFN>
<CSN>sample string 8</CSN>
<ECT>9</ECT>
<GA>3</GA>
<GD>4</GD>
<GN>5</GN>
<GS>2</GS>
<GV>6</GV>
<id>1</id>
</SeatVacancy>
<SeatVacancy>
<CFN>sample string 7</CFN>
<CSN>sample string 8</CSN>
<ECT>9</ECT>
<GA>3</GA>
<GD>4</GD>
<GN>5</GN>
<GS>2</GS>
<GV>6</GV>
<id>1</id>
</SeatVacancy>
</ArrayOfSeatVacancy>