GET api/Images
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of ImageName | Description | Type | Additional information |
---|---|---|---|
Id | integer |
None. |
|
ImageUrl | string |
Required Data type: ImageUrl |
|
ImageRefID | string |
String length: inclusive between 0 and 50 |
|
CreatedBy | string |
String length: inclusive between 0 and 256 |
|
CreatedDate | date |
None. |
|
LastModifiedBy | string |
String length: inclusive between 0 and 256 |
|
LastModifiedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Id": 1, "ImageUrl": "sample string 2", "ImageRefID": "sample string 3", "CreatedBy": "sample string 4", "CreatedDate": "2025-06-26T13:00:02.1543412+00:00", "LastModifiedBy": "sample string 5", "LastModifiedDate": "2025-06-26T13:00:02.1543412+00:00" }, { "Id": 1, "ImageUrl": "sample string 2", "ImageRefID": "sample string 3", "CreatedBy": "sample string 4", "CreatedDate": "2025-06-26T13:00:02.1543412+00:00", "LastModifiedBy": "sample string 5", "LastModifiedDate": "2025-06-26T13:00:02.1543412+00:00" } ]
application/xml, text/xml
Sample:
<ArrayOfImage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TripPlannerAPI.Models.Config"> <Image> <CreatedBy>sample string 4</CreatedBy> <CreatedDate>2025-06-26T13:00:02.1543412+00:00</CreatedDate> <Id>1</Id> <ImageRefID>sample string 3</ImageRefID> <ImageUrl>sample string 2</ImageUrl> <LastModifiedBy>sample string 5</LastModifiedBy> <LastModifiedDate>2025-06-26T13:00:02.1543412+00:00</LastModifiedDate> </Image> <Image> <CreatedBy>sample string 4</CreatedBy> <CreatedDate>2025-06-26T13:00:02.1543412+00:00</CreatedDate> <Id>1</Id> <ImageRefID>sample string 3</ImageRefID> <ImageUrl>sample string 2</ImageUrl> <LastModifiedBy>sample string 5</LastModifiedBy> <LastModifiedDate>2025-06-26T13:00:02.1543412+00:00</LastModifiedDate> </Image> </ArrayOfImage>