GET webapi/SignalR?session_id={session_id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| session_id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
SyncContent| Name | Description | Type | Additional information |
|---|---|---|---|
| sessionId | integer |
None. |
|
| assetId | integer |
None. |
|
| contentId | integer |
None. |
|
| contentSrc | string |
None. |
|
| contentType | string |
None. |
|
| contentName | string |
None. |
|
| materialType | string |
None. |
|
| duration | string |
None. |
|
| isPaused | boolean |
None. |
|
| question | string |
None. |
|
| answer | string |
None. |
|
| participant | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"sessionId": 1,
"assetId": 2,
"contentId": 3,
"contentSrc": "sample string 4",
"contentType": "sample string 5",
"contentName": "sample string 6",
"materialType": "sample string 7",
"duration": "sample string 8",
"isPaused": true,
"question": "sample string 10",
"answer": "sample string 11",
"participant": 12
}
application/xml, text/xml
Sample:
<SyncContent xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/webcastspeakeruser"> <answer>sample string 11</answer> <assetId>2</assetId> <contentId>3</contentId> <contentName>sample string 6</contentName> <contentSrc>sample string 4</contentSrc> <contentType>sample string 5</contentType> <duration>sample string 8</duration> <isPaused>true</isPaused> <materialType>sample string 7</materialType> <participant>12</participant> <question>sample string 10</question> <sessionId>1</sessionId> </SyncContent>