POST RestApi/personal/mediarecorder/createplayer/v1
Request Information
URI Parameters
None.
Body Parameters
ObjectNone.
Request Formats
application/json, text/json
Sample:
{}
application/xml, text/xml
Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />
application/x-www-form-urlencoded
Sample:
No sample available
Response Information
Resource Description
Itsolutions.Itslearning.Web.RestApi.Personal.MediaRecorderController+VideoResponseName | Description | Type | Additional information |
---|---|---|---|
playerHtml |
The raw html of a video player for the video uploaded |
string |
None. |
success |
Indicates if the video was uploaded successfully |
boolean |
None. |
error |
Description of the error if any |
string |
None. |
mediaRecorderUploadResult |
Metadata of the recorded file |
Itsolutions.Itslearning.Web.RestApi.Personal.MediaRecorderUploadResult |
None. |
Response Formats
application/json, text/json
Sample:
{ "playerHtml": "sample string 1", "success": true, "error": "sample string 3", "mediaRecorderUploadResult": { "id": "sample string 1", "name": "sample string 2", "url": "sample string 1" } }
application/xml, text/xml
Sample:
<MediaRecorderController.VideoResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Itsolutions.Itslearning.Web.RestApi.Personal"> <error>sample string 3</error> <mediaRecorderUploadResult> <id>sample string 1</id> <name>sample string 2</name> <url>sample string 1</url> </mediaRecorderUploadResult> <playerHtml>sample string 1</playerHtml> <success>true</success> </MediaRecorderController.VideoResponse>