POST RestApi/personal/mediarecorder/uploadrecording/v1

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Itsolutions.Itslearning.Web.RestApi.Personal.MediaRecorderUploadResponse
NameDescriptionTypeAdditional information
fileName

The resulting name of the file after uploading (Could be changed to make it safe or trimmed if too long)

string

None.

success

Indicates if the file was uploaded successfully

boolean

None.

error

Description of the error if any

string

None.

Response Formats

application/json, text/json

Sample:
{
  "fileName": "sample string 1",
  "success": true,
  "error": "sample string 3"
}

application/xml, text/xml

Sample:
<MediaRecorderUploadResponse 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>
  <fileName>sample string 1</fileName>
  <success>true</success>
</MediaRecorderUploadResponse>