POST api/AddUpdateVideoStudentMapping

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
objVideoLibrary
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "VideoStudentMappingID": 1,
  "VideoLibraryID": 2,
  "StudentID": 3,
  "MaxWatchTime": "sample string 4",
  "StudentWatchTime": "sample string 5",
  "StartDateTime": "sample string 6",
  "EnrollmentNo": "sample string 7",
  "StudentName": "sample string 8"
}

text/html

Sample:
{"VideoStudentMappingID":1,"VideoLibraryID":2,"StudentID":3,"MaxWatchTime":"sample string 4","StudentWatchTime":"sample string 5","StartDateTime":"sample string 6","EnrollmentNo":"sample string 7","StudentName":"sample string 8"}

application/xml, text/xml

Sample:
<VideoStudentMappingViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ViewModels.VideoLibrary">
  <EnrollmentNo>sample string 7</EnrollmentNo>
  <MaxWatchTime>sample string 4</MaxWatchTime>
  <StartDateTime>sample string 6</StartDateTime>
  <StudentID>3</StudentID>
  <StudentName>sample string 8</StudentName>
  <StudentWatchTime>sample string 5</StudentWatchTime>
  <VideoLibraryID>2</VideoLibraryID>
  <VideoStudentMappingID>1</VideoStudentMappingID>
</VideoStudentMappingViewModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'VideoStudentMappingViewModel'.