POST lmsService/sendVNoteDetails

Request Information

URI Parameters

None.

Body Parameters

VNoteLists
NameDescriptionTypeAdditional information
VNoteList

Collection of VNote

None.

ludt

string

None.

Request Formats

application/json, text/json

Sample:
{
  "VNoteList": [
    {
      "VNoteId": "sample string 1",
      "UserCode": "sample string 2",
      "CourseCode": "sample string 3",
      "ProductContentCode": "sample string 4",
      "VNoteText": "sample string 5",
      "CurrentPosition": 6,
      "TotalDuration": 7,
      "IsImportant": true,
      "IsDeleted": true,
      "CreatedDate": "sample string 10"
    },
    {
      "VNoteId": "sample string 1",
      "UserCode": "sample string 2",
      "CourseCode": "sample string 3",
      "ProductContentCode": "sample string 4",
      "VNoteText": "sample string 5",
      "CurrentPosition": 6,
      "TotalDuration": 7,
      "IsImportant": true,
      "IsDeleted": true,
      "CreatedDate": "sample string 10"
    }
  ],
  "ludt": "sample string 1"
}

application/xml, text/xml

Sample:
<ContentActivityEntity.VNoteLists xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities">
  <VNoteList>
    <ContentActivityEntity.VNote>
      <CourseCode>sample string 3</CourseCode>
      <CreatedDate>sample string 10</CreatedDate>
      <CurrentPosition>6</CurrentPosition>
      <IsDeleted>true</IsDeleted>
      <IsImportant>true</IsImportant>
      <ProductContentCode>sample string 4</ProductContentCode>
      <TotalDuration>7</TotalDuration>
      <UserCode>sample string 2</UserCode>
      <VNoteId>sample string 1</VNoteId>
      <VNoteText>sample string 5</VNoteText>
    </ContentActivityEntity.VNote>
    <ContentActivityEntity.VNote>
      <CourseCode>sample string 3</CourseCode>
      <CreatedDate>sample string 10</CreatedDate>
      <CurrentPosition>6</CurrentPosition>
      <IsDeleted>true</IsDeleted>
      <IsImportant>true</IsImportant>
      <ProductContentCode>sample string 4</ProductContentCode>
      <TotalDuration>7</TotalDuration>
      <UserCode>sample string 2</UserCode>
      <VNoteId>sample string 1</VNoteId>
      <VNoteText>sample string 5</VNoteText>
    </ContentActivityEntity.VNote>
  </VNoteList>
  <ludt>sample string 1</ludt>
</ContentActivityEntity.VNoteLists>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

VNoteListResult
NameDescriptionTypeAdditional information
VNoteIDs

Collection of string

None.

Response Formats

application/json, text/json

Sample:
{
  "VNoteIDs": [
    "sample string 1",
    "sample string 2"
  ]
}

application/xml, text/xml

Sample:
<ContentActivityEntity.VNoteListResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities">
  <VNoteIDs xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </VNoteIDs>
</ContentActivityEntity.VNoteListResult>