GET api/Project/GetAlbumList?ProjectID={ProjectID}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
ProjectID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of AlbumOrPhotoName | 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>