GET api/Images/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Image| Name | 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-12-13T23:25:04.4277863+00:00",
"LastModifiedBy": "sample string 5",
"LastModifiedDate": "2025-12-13T23:25:04.4277863+00:00"
}
application/xml, text/xml
Sample:
<Image xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TripPlannerAPI.Models.Config"> <CreatedBy>sample string 4</CreatedBy> <CreatedDate>2025-12-13T23:25:04.4277863+00:00</CreatedDate> <Id>1</Id> <ImageRefID>sample string 3</ImageRefID> <ImageUrl>sample string 2</ImageUrl> <LastModifiedBy>sample string 5</LastModifiedBy> <LastModifiedDate>2025-12-13T23:25:04.4277863+00:00</LastModifiedDate> </Image>