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": "83988a07-4d85-4628-8c7b-2a3ffba3a3d2", "ImageName": "sample string 2", "Image": "sample string 3" }, { "Id": "83988a07-4d85-4628-8c7b-2a3ffba3a3d2", "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>83988a07-4d85-4628-8c7b-2a3ffba3a3d2</Id> <Image>sample string 3</Image> <ImageName>sample string 2</ImageName> </ContentDto> <ContentDto> <Id>83988a07-4d85-4628-8c7b-2a3ffba3a3d2</Id> <Image>sample string 3</Image> <ImageName>sample string 2</ImageName> </ContentDto> </ArrayOfContentDto>