GET api/videos/VideoAlbumByIDApp?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

VideoAlbumViewApp
NameDescriptionTypeAdditional information
VideoAlbumID

integer

None.

VideoAlbumTitle

string

None.

VideoAlbumDesc

string

None.

ProgramDate

date

None.

ComponentName

string

None.

ComponentID

integer

None.

SubComponentName

string

None.

SubComponentID

integer

None.

SchoolID

integer

None.

IsPublished

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "VideoAlbumID": 1,
  "VideoAlbumTitle": "sample string 2",
  "VideoAlbumDesc": "sample string 3",
  "ProgramDate": "2026-04-19T16:27:31.4503768+05:30",
  "ComponentName": "sample string 5",
  "ComponentID": 6,
  "SubComponentName": "sample string 7",
  "SubComponentID": 8,
  "SchoolID": 9,
  "IsPublished": true
}

application/xml, text/xml

Sample:
<VideoAlbumViewApp xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SikkimRepository.Entities.CustomModels">
  <ComponentID>6</ComponentID>
  <ComponentName>sample string 5</ComponentName>
  <IsPublished>true</IsPublished>
  <ProgramDate>2026-04-19T16:27:31.4503768+05:30</ProgramDate>
  <SchoolID>9</SchoolID>
  <SubComponentID>8</SubComponentID>
  <SubComponentName>sample string 7</SubComponentName>
  <VideoAlbumDesc>sample string 3</VideoAlbumDesc>
  <VideoAlbumID>1</VideoAlbumID>
  <VideoAlbumTitle>sample string 2</VideoAlbumTitle>
</VideoAlbumViewApp>