GET api/SchoolGalleries/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
SchoolGallery| Name | Description | Type | Additional 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": "b805ed9f-b706-4c3e-b736-963bc30acc39",
"SchoolID": "c319342b-e8d3-41bf-a53c-1bb90edad589",
"PictureUrl": "sample string 3",
"PictureDate": "sample string 4",
"PictureTime": "sample string 5"
}
application/xml, text/xml
Sample:
<SchoolGallery xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParentAPI.Models"> <GalleryID>b805ed9f-b706-4c3e-b736-963bc30acc39</GalleryID> <PictureDate>sample string 4</PictureDate> <PictureTime>sample string 5</PictureTime> <PictureUrl>sample string 3</PictureUrl> <SchoolID>c319342b-e8d3-41bf-a53c-1bb90edad589</SchoolID> </SchoolGallery>