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": "d3ed70dd-5ad2-47a6-b780-60d7f83c1bec",
"SchoolID": "4d99fc0d-2e17-45b8-be17-05f52beed429",
"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>d3ed70dd-5ad2-47a6-b780-60d7f83c1bec</GalleryID> <PictureDate>sample string 4</PictureDate> <PictureTime>sample string 5</PictureTime> <PictureUrl>sample string 3</PictureUrl> <SchoolID>4d99fc0d-2e17-45b8-be17-05f52beed429</SchoolID> </SchoolGallery>