POST api/ELearningVideosApi/SaveLectureNotes

Request Information

URI Parameters

None.

Body Parameters

eLearningLectureNote
NameDescriptionTypeAdditional information
Id

decimal number

None.

BrId

decimal number

None.

ClassId

decimal number

None.

SubjectId

decimal number

None.

Topic

string

None.

Date

date

None.

GeneralNotes

string

None.

FilePath

string

None.

IsDeleted

boolean

None.

CreateDate

date

None.

CreateBy

decimal number

None.

UpdateDate

date

None.

UpdateBy

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1.0,
  "BrId": 1.0,
  "ClassId": 1.0,
  "SubjectId": 1.0,
  "Topic": "sample string 2",
  "Date": "2024-09-29T05:27:38.1257772+05:00",
  "GeneralNotes": "sample string 3",
  "FilePath": "sample string 4",
  "IsDeleted": true,
  "CreateDate": "2024-09-29T05:27:38.1257772+05:00",
  "CreateBy": 1.0,
  "UpdateDate": "2024-09-29T05:27:38.1257772+05:00",
  "UpdateBy": 1.0
}

application/xml, text/xml

Sample:
<eLearningLectureNote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataModels">
  <BrId>1</BrId>
  <ClassId>1</ClassId>
  <CreateBy>1</CreateBy>
  <CreateDate>2024-09-29T05:27:38.1257772+05:00</CreateDate>
  <Date>2024-09-29T05:27:38.1257772+05:00</Date>
  <FilePath>sample string 4</FilePath>
  <GeneralNotes>sample string 3</GeneralNotes>
  <Id>1</Id>
  <IsDeleted>true</IsDeleted>
  <SubjectId>1</SubjectId>
  <Topic>sample string 2</Topic>
  <UpdateBy>1</UpdateBy>
  <UpdateDate>2024-09-29T05:27:38.1257772+05:00</UpdateDate>
</eLearningLectureNote>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>