GET example/api/Image
https://app.bwz.se/bedrock/example/api/Image
Gets all ImageModels.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
An array of ImageModels.
Collection of ImageModelName | Description | Type | Additional information |
---|---|---|---|
Created |
Gets or sets the created date |
date |
None. |
CreatedByUserId |
Gets or sets the created by user identifier. |
integer |
None. |
FileSize |
Gets or sets the size of the file. |
integer |
None. |
Height |
Gets or sets the height. |
integer |
None. |
Id |
Gets or sets the identifier. |
integer |
None. |
Name |
Gets or sets the name. |
string |
None. |
UrlAbsolute |
Gets or sets the URL absolute. |
string |
None. |
UrlRelative |
Gets or sets the relative URL. |
string |
None. |
Width |
Gets or sets the width. |
integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Created": "2024-11-21T17:33:21.4135123+01:00", "CreatedByUserId": 2, "FileSize": 3, "Height": 4, "Id": 5, "Name": "sample string 6", "UrlAbsolute": "sample string 7", "UrlRelative": "sample string 8", "Width": 9 }, { "Created": "2024-11-21T17:33:21.4135123+01:00", "CreatedByUserId": 2, "FileSize": 3, "Height": 4, "Id": 5, "Name": "sample string 6", "UrlAbsolute": "sample string 7", "UrlRelative": "sample string 8", "Width": 9 } ]
application/xml, text/xml
Sample:
<ArrayOfImageModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netoptions.BizWizard.Api.Common.Models"> <ImageModel> <Created>2024-11-21T17:33:21.4135123+01:00</Created> <CreatedByUserId>2</CreatedByUserId> <FileSize>3</FileSize> <Height>4</Height> <Id>5</Id> <Name>sample string 6</Name> <UrlAbsolute>sample string 7</UrlAbsolute> <UrlRelative>sample string 8</UrlRelative> <Width>9</Width> </ImageModel> <ImageModel> <Created>2024-11-21T17:33:21.4135123+01:00</Created> <CreatedByUserId>2</CreatedByUserId> <FileSize>3</FileSize> <Height>4</Height> <Id>5</Id> <Name>sample string 6</Name> <UrlAbsolute>sample string 7</UrlAbsolute> <UrlRelative>sample string 8</UrlRelative> <Width>9</Width> </ImageModel> </ArrayOfImageModel>