GET api/videos/VideoAlbumPagedApp?ComponentID={ComponentID}&SubComponentID={SubComponentID}&PageNo={PageNo}&PageSize={PageSize}&sTerm={sTerm}&SchoolID={SchoolID}&IsPublished={IsPublished}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ComponentID

integer

Required

SubComponentID

integer

Required

PageNo

integer

Required

PageSize

integer

Required

sTerm

string

Required

SchoolID

integer

Default value is 0

IsPublished

boolean

None.

Body Parameters

None.

Response Information

Resource Description

VideoAlbumGenViewModel
NameDescriptionTypeAdditional information
VideoAlbumList

Collection of GenVideoAlbumView

None.

TotalRecords

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "VideoAlbumList": [
    {
      "VideoAlbumID": 1,
      "VideoAlbumTitle": "sample string 2",
      "VideoAlbumDesc": "sample string 3",
      "VideoTitle": "sample string 4",
      "ProgramDate": "2026-04-19T16:26:40.5178203+05:30",
      "VideoFilePathPublished": "sample string 6",
      "VideoFilePathDraft": "sample string 7",
      "ComponentName": "sample string 8",
      "ComponentID": 9,
      "SubComponentName": "sample string 10",
      "SubComponentID": 11,
      "IsPublished": true,
      "SchoolName": "sample string 13"
    },
    {
      "VideoAlbumID": 1,
      "VideoAlbumTitle": "sample string 2",
      "VideoAlbumDesc": "sample string 3",
      "VideoTitle": "sample string 4",
      "ProgramDate": "2026-04-19T16:26:40.5178203+05:30",
      "VideoFilePathPublished": "sample string 6",
      "VideoFilePathDraft": "sample string 7",
      "ComponentName": "sample string 8",
      "ComponentID": 9,
      "SubComponentName": "sample string 10",
      "SubComponentID": 11,
      "IsPublished": true,
      "SchoolName": "sample string 13"
    }
  ],
  "TotalRecords": 1
}

application/xml, text/xml

Sample:
<VideoAlbumGenViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SikkimRepository.Entities.CustomModels">
  <TotalRecords>1</TotalRecords>
  <VideoAlbumList>
    <GenVideoAlbumView>
      <ComponentID>9</ComponentID>
      <ComponentName>sample string 8</ComponentName>
      <IsPublished>true</IsPublished>
      <ProgramDate>2026-04-19T16:26:40.5178203+05:30</ProgramDate>
      <SchoolName>sample string 13</SchoolName>
      <SubComponentID>11</SubComponentID>
      <SubComponentName>sample string 10</SubComponentName>
      <VideoAlbumDesc>sample string 3</VideoAlbumDesc>
      <VideoAlbumID>1</VideoAlbumID>
      <VideoAlbumTitle>sample string 2</VideoAlbumTitle>
      <VideoFilePathDraft>sample string 7</VideoFilePathDraft>
      <VideoFilePathPublished>sample string 6</VideoFilePathPublished>
      <VideoTitle>sample string 4</VideoTitle>
    </GenVideoAlbumView>
    <GenVideoAlbumView>
      <ComponentID>9</ComponentID>
      <ComponentName>sample string 8</ComponentName>
      <IsPublished>true</IsPublished>
      <ProgramDate>2026-04-19T16:26:40.5178203+05:30</ProgramDate>
      <SchoolName>sample string 13</SchoolName>
      <SubComponentID>11</SubComponentID>
      <SubComponentName>sample string 10</SubComponentName>
      <VideoAlbumDesc>sample string 3</VideoAlbumDesc>
      <VideoAlbumID>1</VideoAlbumID>
      <VideoAlbumTitle>sample string 2</VideoAlbumTitle>
      <VideoFilePathDraft>sample string 7</VideoFilePathDraft>
      <VideoFilePathPublished>sample string 6</VideoFilePathPublished>
      <VideoTitle>sample string 4</VideoTitle>
    </GenVideoAlbumView>
  </VideoAlbumList>
</VideoAlbumGenViewModel>