GET api/Content/GetContent
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of ContentDtoName | Description | Type | Additional information |
---|---|---|---|
Id | globally unique identifier |
None. |
|
ImageName | string |
None. |
|
Image | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Id": "fb926a43-0c4c-4545-81e7-e71efeb30dcc", "ImageName": "sample string 2", "Image": "sample string 3" }, { "Id": "fb926a43-0c4c-4545-81e7-e71efeb30dcc", "ImageName": "sample string 2", "Image": "sample string 3" } ]
application/xml, text/xml
Sample:
<ArrayOfContentDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.ContentModule.Model"> <ContentDto> <Id>fb926a43-0c4c-4545-81e7-e71efeb30dcc</Id> <Image>sample string 3</Image> <ImageName>sample string 2</ImageName> </ContentDto> <ContentDto> <Id>fb926a43-0c4c-4545-81e7-e71efeb30dcc</Id> <Image>sample string 3</Image> <ImageName>sample string 2</ImageName> </ContentDto> </ArrayOfContentDto>