GET api/VideoWebAPI/GetVideosBetween?start_index={start_index}&end_index={end_index}&is_bol_kan={is_bol_kan}&language={language}&flag={flag}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
start_index

integer

Required

end_index

integer

Required

is_bol_kan

boolean

Required

language

boolean

Required

flag

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of GetVideosBetween_Result
NameDescriptionTypeAdditional information
pk_video_id

integer

None.

title

string

None.

image_icon

string

None.

video_link

string

None.

description

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "pk_video_id": 1,
    "title": "sample string 2",
    "image_icon": "sample string 3",
    "video_link": "sample string 4",
    "description": "sample string 5"
  },
  {
    "pk_video_id": 1,
    "title": "sample string 2",
    "image_icon": "sample string 3",
    "video_link": "sample string 4",
    "description": "sample string 5"
  }
]

text/html

Sample:
[{"pk_video_id":1,"title":"sample string 2","image_icon":"sample string 3","video_link":"sample string 4","description":"sample string 5"},{"pk_video_id":1,"title":"sample string 2","image_icon":"sample string 3","video_link":"sample string 4","description":"sample string 5"}]

application/xml, text/xml

Sample:
<ArrayOfGetVideosBetween_Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Nishadi_DataLayer.Model">
  <GetVideosBetween_Result>
    <description>sample string 5</description>
    <image_icon>sample string 3</image_icon>
    <pk_video_id>1</pk_video_id>
    <title>sample string 2</title>
    <video_link>sample string 4</video_link>
  </GetVideosBetween_Result>
  <GetVideosBetween_Result>
    <description>sample string 5</description>
    <image_icon>sample string 3</image_icon>
    <pk_video_id>1</pk_video_id>
    <title>sample string 2</title>
    <video_link>sample string 4</video_link>
  </GetVideosBetween_Result>
</ArrayOfGetVideosBetween_Result>