GET api/VideoLinks/GetVideoLinkCategoryList?PageNo={PageNo}&PageSize={PageSize}&SearchTerm={SearchTerm}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
PageNo

integer

Required

PageSize

integer

Required

SearchTerm

string

Default value is

Body Parameters

None.

Response Information

Resource Description

VideoLinkCategoryViewModel
NameDescriptionTypeAdditional information
VideoLinkCategoryList

Collection of utblMstVideoLinkCategory

None.

TotalRecords

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "VideoLinkCategoryList": [
    {
      "VideoLinkCategoryId": 1,
      "VideoLinkCategoryName": "sample string 2",
      "TransDate": "2025-10-28T01:06:27.9100645+05:30",
      "UserId": "sample string 4"
    },
    {
      "VideoLinkCategoryId": 1,
      "VideoLinkCategoryName": "sample string 2",
      "TransDate": "2025-10-28T01:06:27.9100645+05:30",
      "UserId": "sample string 4"
    }
  ],
  "TotalRecords": 1
}

application/xml, text/xml

Sample:
<VideoLinkCategoryViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Master.Operation.CustomModels">
  <TotalRecords>1</TotalRecords>
  <VideoLinkCategoryList xmlns:d2p1="http://schemas.datacontract.org/2004/07/Master.Operation.Models">
    <d2p1:utblMstVideoLinkCategory>
      <d2p1:TransDate>2025-10-28T01:06:27.9100645+05:30</d2p1:TransDate>
      <d2p1:UserId>sample string 4</d2p1:UserId>
      <d2p1:VideoLinkCategoryId>1</d2p1:VideoLinkCategoryId>
      <d2p1:VideoLinkCategoryName>sample string 2</d2p1:VideoLinkCategoryName>
    </d2p1:utblMstVideoLinkCategory>
    <d2p1:utblMstVideoLinkCategory>
      <d2p1:TransDate>2025-10-28T01:06:27.9100645+05:30</d2p1:TransDate>
      <d2p1:UserId>sample string 4</d2p1:UserId>
      <d2p1:VideoLinkCategoryId>1</d2p1:VideoLinkCategoryId>
      <d2p1:VideoLinkCategoryName>sample string 2</d2p1:VideoLinkCategoryName>
    </d2p1:utblMstVideoLinkCategory>
  </VideoLinkCategoryList>
</VideoLinkCategoryViewModel>