GET Brokerage/GetPropertyAttachments?propid={propid}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| propid | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of PropertyAttachment| Name | Description | Type | Additional information |
|---|---|---|---|
| propertyattachment_id | integer |
None. |
|
| property_id | integer |
None. |
|
| img_src | string |
None. |
|
| attachment_name | string |
None. |
|
| attachment_size | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"propertyattachment_id": 1,
"property_id": 2,
"img_src": "sample string 3",
"attachment_name": "sample string 4",
"attachment_size": 5
},
{
"propertyattachment_id": 1,
"property_id": 2,
"img_src": "sample string 3",
"attachment_name": "sample string 4",
"attachment_size": 5
}
]
application/xml, text/xml
Sample:
<ArrayOfPropertyAttachment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Realty.Model">
<PropertyAttachment>
<attachment_name>sample string 4</attachment_name>
<attachment_size>5</attachment_size>
<img_src>sample string 3</img_src>
<property_id>2</property_id>
<propertyattachment_id>1</propertyattachment_id>
</PropertyAttachment>
<PropertyAttachment>
<attachment_name>sample string 4</attachment_name>
<attachment_size>5</attachment_size>
<img_src>sample string 3</img_src>
<property_id>2</property_id>
<propertyattachment_id>1</propertyattachment_id>
</PropertyAttachment>
</ArrayOfPropertyAttachment>