GET api/SchoolGalleries

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of SchoolGallery
NameDescriptionTypeAdditional information
GalleryID

globally unique identifier

None.

SchoolID

globally unique identifier

None.

PictureUrl

string

None.

PictureDate

string

None.

PictureTime

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "GalleryID": "b9fba5d9-332f-4c2f-9c17-fdec5eb4066e",
    "SchoolID": "d8ac83fa-c891-47c7-8bdd-ad1e5383edd8",
    "PictureUrl": "sample string 3",
    "PictureDate": "sample string 4",
    "PictureTime": "sample string 5"
  },
  {
    "GalleryID": "b9fba5d9-332f-4c2f-9c17-fdec5eb4066e",
    "SchoolID": "d8ac83fa-c891-47c7-8bdd-ad1e5383edd8",
    "PictureUrl": "sample string 3",
    "PictureDate": "sample string 4",
    "PictureTime": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfSchoolGallery xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParentAPI.Models">
  <SchoolGallery>
    <GalleryID>b9fba5d9-332f-4c2f-9c17-fdec5eb4066e</GalleryID>
    <PictureDate>sample string 4</PictureDate>
    <PictureTime>sample string 5</PictureTime>
    <PictureUrl>sample string 3</PictureUrl>
    <SchoolID>d8ac83fa-c891-47c7-8bdd-ad1e5383edd8</SchoolID>
  </SchoolGallery>
  <SchoolGallery>
    <GalleryID>b9fba5d9-332f-4c2f-9c17-fdec5eb4066e</GalleryID>
    <PictureDate>sample string 4</PictureDate>
    <PictureTime>sample string 5</PictureTime>
    <PictureUrl>sample string 3</PictureUrl>
    <SchoolID>d8ac83fa-c891-47c7-8bdd-ad1e5383edd8</SchoolID>
  </SchoolGallery>
</ArrayOfSchoolGallery>