GET api/estatemedia/{estateId}?type={type}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| estateId | integer |
Required |
|
| type | MultimediumType |
Default value is 1 |
Body Parameters
None.
Response Information
Resource Description
Collection of Multimedium| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Type | MultimediumType |
None. |
|
| Index | integer |
None. |
|
| HiResUrl | string |
None. |
|
| LoResUrl | string |
None. |
|
| SubjectType | MultimediumSubjectType |
None. |
|
| SubjectTypeDescription | string |
None. |
|
| Title | string |
None. |
|
| Description | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"type": "AUDIO",
"index": 1,
"hiResUrl": "sample string 1",
"loResUrl": "sample string 2",
"subjectType": "FIRST_PICTURE",
"subjectTypeDescription": "sample string 3",
"title": "sample string 4",
"description": "sample string 5"
},
{
"id": 1,
"type": "AUDIO",
"index": 1,
"hiResUrl": "sample string 1",
"loResUrl": "sample string 2",
"subjectType": "FIRST_PICTURE",
"subjectTypeDescription": "sample string 3",
"title": "sample string 4",
"description": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfMultimedium xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Skarabee.Fuse.OM">
<Multimedium>
<Description>sample string 5</Description>
<HiResUrl>sample string 1</HiResUrl>
<Id>1</Id>
<Index>1</Index>
<LoResUrl>sample string 2</LoResUrl>
<SubjectType>FIRST_PICTURE</SubjectType>
<SubjectTypeDescription>sample string 3</SubjectTypeDescription>
<Title>sample string 4</Title>
<Type>AUDIO</Type>
</Multimedium>
<Multimedium>
<Description>sample string 5</Description>
<HiResUrl>sample string 1</HiResUrl>
<Id>1</Id>
<Index>1</Index>
<LoResUrl>sample string 2</LoResUrl>
<SubjectType>FIRST_PICTURE</SubjectType>
<SubjectTypeDescription>sample string 3</SubjectTypeDescription>
<Title>sample string 4</Title>
<Type>AUDIO</Type>
</Multimedium>
</ArrayOfMultimedium>