GET api/Student/GetNextSlide?studentId={studentId}&gender={gender}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| studentId | integer |
Required |
|
| gender | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Slide| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| ModuleId | integer |
None. |
|
| Name | string |
None. |
|
| SortOrder | integer |
None. |
|
| Url | string |
None. |
|
| Error | Error |
None. |
|
| Section | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"ModuleId": 2,
"Name": "sample string 3",
"SortOrder": 4,
"Url": "sample string 5",
"Error": {
"ID": "sample string 1",
"RawError": "sample string 2",
"StackTrace": "sample string 3",
"FriendlyMessage": "sample string 4"
},
"Section": 6
}
application/xml, text/xml
Sample:
<Slide xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BSTServices.Models">
<Error>
<FriendlyMessage>sample string 4</FriendlyMessage>
<ID>sample string 1</ID>
<RawError>sample string 2</RawError>
<StackTrace>sample string 3</StackTrace>
</Error>
<Id>1</Id>
<ModuleId>2</ModuleId>
<Name>sample string 3</Name>
<Section>6</Section>
<SortOrder>4</SortOrder>
<Url>sample string 5</Url>
</Slide>