Retrieve a project for the real estate
This method retrieves the project of a real estate of the requested user
GET /offer/v1.0/user/{username}/realestateproject?realestateid={realestateid} or ...?realestateid=ext-{externalId}
Request
Path Parameters
PARAMETER |
DESCRIPTION |
Username |
the username which the user uses for logging in to www.immobilienscout24 |
me |
"me" can be used instead of the username, when the user is logged in by 3-legged oauth |
realestateid |
the unique scout object ID, which is being created by POST REALESTATE automatically |
external-id |
can be used instead of the scout object ID. It is the customer-defined ID of the real estate, must be unique per user |
Successful response
XML:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 | <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ns4:realEstateProjects xmlns:common="http://rest.immobilienscout24.de/schema/common/1.0" xmlns:gis="http://rest.immobilienscout24.de/schema/platform/gis/1.0" xmlns:ns4="http://rest.immobilienscout24.de/schema/offer/realestateproject/1.0" xmlns:ns5="http://www.w3.org/1999/xlink">
<realEstateProject id="3">
<name>testprojekt2</name>
<price>
<minimal>10000.00</minimal>
<maximal>1000000.00</maximal>
</price>
<space>
<minimal>200.00</minimal>
<maximal>500.00</maximal>
</space>
<numberOfHousingUnit>3</numberOfHousingUnit>
<interiorQuality>SOPHISTICATED</interiorQuality>
<freeFrom>morgen</freeFrom>
<address>
<street>andreasstrasse</street>
<houseNumber>10</houseNumber>
<postcode>10179</postcode>
<city>berlin</city>
</address>
</realEstateProject>
</ns4:realEstateProjects>
|
JSON:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 | {
"realEstateProjects.realEstateProject":{
"name":"testprojekt2",
"price":{
"minimal":10000.00,
"maximal":1000000.00
},
"space":{
"minimal":200.00,
"maximal":500.00
},
"numberOfHousingUnit":3,
"interiorQuality":"SOPHISTICATED",
"freeFrom":"morgen",
"address":{
"street":"andreasstrasse",
"houseNumber":"10",
"postcode":"10179",
"city":"berlin"
}
}
}
|