GET api/Project/GetPhotoList?AlbumPath={AlbumPath}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| AlbumPath | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of AlbumOrPhoto| Name | Description | Type | Additional information |
|---|---|---|---|
| Path | string |
None. |
|
| Name | string |
None. |
|
| Note | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Path": "sample string 1",
"Name": "sample string 2",
"Note": "sample string 3"
},
{
"Path": "sample string 1",
"Name": "sample string 2",
"Note": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfAlbumOrPhoto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CrowsNest.Api">
<AlbumOrPhoto>
<Name>sample string 2</Name>
<Note>sample string 3</Note>
<Path>sample string 1</Path>
</AlbumOrPhoto>
<AlbumOrPhoto>
<Name>sample string 2</Name>
<Note>sample string 3</Note>
<Path>sample string 1</Path>
</AlbumOrPhoto>
</ArrayOfAlbumOrPhoto>