GET api/PhotoGalleryWebAPI/GetGalleryCategoriesBetween?start_index={start_index}&end_index={end_index}&is_bol_kan={is_bol_kan}&language={language}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
start_index

integer

Required

end_index

integer

Required

is_bol_kan

boolean

Required

language

boolean

Required

Body Parameters

None.

Response Information

Resource Description

Collection of GetGalleryCategoriesBetween_Result
NameDescriptionTypeAdditional information
gallery_category_id

integer

None.

gallery_category_title

string

None.

gallery_category_image

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "gallery_category_id": 1,
    "gallery_category_title": "sample string 2",
    "gallery_category_image": "sample string 3"
  },
  {
    "gallery_category_id": 1,
    "gallery_category_title": "sample string 2",
    "gallery_category_image": "sample string 3"
  }
]

text/html

Sample:
[{"gallery_category_id":1,"gallery_category_title":"sample string 2","gallery_category_image":"sample string 3"},{"gallery_category_id":1,"gallery_category_title":"sample string 2","gallery_category_image":"sample string 3"}]

application/xml, text/xml

Sample:
<ArrayOfGetGalleryCategoriesBetween_Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Nishadi_DataLayer.Model">
  <GetGalleryCategoriesBetween_Result>
    <gallery_category_id>1</gallery_category_id>
    <gallery_category_image>sample string 3</gallery_category_image>
    <gallery_category_title>sample string 2</gallery_category_title>
  </GetGalleryCategoriesBetween_Result>
  <GetGalleryCategoriesBetween_Result>
    <gallery_category_id>1</gallery_category_id>
    <gallery_category_image>sample string 3</gallery_category_image>
    <gallery_category_title>sample string 2</gallery_category_title>
  </GetGalleryCategoriesBetween_Result>
</ArrayOfGetGalleryCategoriesBetween_Result>