GET api/PropertyImage?PropertyID={PropertyID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
PropertyID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of APIPropertyImage
NameDescriptionTypeAdditional information
ImageID

integer

None.

PropertyID

integer

None.

ImageName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ImageID": 1,
    "PropertyID": 1,
    "ImageName": "sample string 2"
  },
  {
    "ImageID": 1,
    "PropertyID": 1,
    "ImageName": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfAPIPropertyImage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgTravelSoftCore.Model">
  <APIPropertyImage>
    <ImageID>1</ImageID>
    <ImageName>sample string 2</ImageName>
    <PropertyID>1</PropertyID>
  </APIPropertyImage>
  <APIPropertyImage>
    <ImageID>1</ImageID>
    <ImageName>sample string 2</ImageName>
    <PropertyID>1</PropertyID>
  </APIPropertyImage>
</ArrayOfAPIPropertyImage>